:root {
  --color-black: #0A0A0A;
  --color-vermilion: #B91C1C;
  --color-white: #F3F4F6;
  --color-gold: #D4AF37;
  --color-charcoal: #1F2937;
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);
  --shadow-gold: 0 4px 16px rgba(212, 175, 55, 0.3);
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--color-white);
  background-color: var(--color-black);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.5rem, 4vw, 3rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.25rem, 3vw, 2rem);
}

p {
  margin-bottom: var(--space-md);
  font-size: clamp(0.875rem, 2vw, 1rem);
}

a {
  color: var(--color-gold);
  text-decoration: none;
  transition: color var(--transition-base);
}

a:hover {
  color: var(--color-vermilion);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.header-container {
  position: relative;
  z-index: 1000;
  padding: var(--space-lg) var(--space-xl);
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  transition: transform var(--transition-slow), opacity var(--transition-slow);
}

.header-container.hidden {
  transform: translateY(-100%);
  opacity: 0;
}

.header-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-text {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  color: var(--color-gold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  gap: var(--space-xl);
  list-style: none;
  align-items: center;
}

.nav-link {
  color: var(--color-white);
  font-size: clamp(0.875rem, 2vw, 1rem);
  font-weight: 500;
  position: relative;
  padding: var(--space-xs) 0;
  transition: color var(--transition-base);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-gold);
  transition: width var(--transition-base);
}

.nav-link:hover::after {
  width: 100%;
}

.burger-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-white);
  font-size: 1.5rem;
  cursor: pointer;
  padding: var(--space-xs);
}

.hero-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-black) 0%, #1a1a1a 100%);
}

.hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: var(--space-2xl);
  animation: fadeInUp 1s ease-out;
}

.hero-title {
  font-size: clamp(2.5rem, 8vw, 5rem);
  margin-bottom: var(--space-lg);
  background: linear-gradient(135deg, var(--color-white) 0%, var(--color-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s infinite;
}

.hero-subtitle {
  font-size: clamp(1rem, 3vw, 1.5rem);
  color: rgba(243, 244, 246, 0.8);
  margin-bottom: var(--space-2xl);
}

.hero-luxury {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-black) 0%, #0f0f0f 50%, var(--color-black) 100%);
}

.hero-luxury::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 60%);
  animation: rotate 25s linear infinite;
}

.hero-luxury::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(185, 28, 28, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
  animation: pulseGlow 6s ease-in-out infinite;
}

.hero-luxury-animated-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.hero-luxury-shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(185, 28, 28, 0.1) 100%);
  animation: floatShape 20s ease-in-out infinite;
}

.hero-luxury-shape:nth-child(1) {
  width: 300px;
  height: 300px;
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.hero-luxury-shape:nth-child(2) {
  width: 200px;
  height: 200px;
  top: 60%;
  right: 15%;
  animation-delay: 3s;
}

.hero-luxury-shape:nth-child(3) {
  width: 250px;
  height: 250px;
  bottom: 20%;
  left: 20%;
  animation-delay: 6s;
}

.hero-luxury-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1000px;
  padding: var(--space-3xl) var(--space-xl);
}

.hero-luxury-title {
  font-size: clamp(2.75rem, 9vw, 6rem);
  margin-bottom: var(--space-xl);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  position: relative;
}

.hero-luxury-title-main {
  display: block;
  background: linear-gradient(180deg, var(--color-white) 0%, var(--color-gold) 50%, var(--color-white) 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease infinite, textReveal 1.2s ease-out;
  text-shadow: 0 0 40px rgba(212, 175, 55, 0.3);
  position: relative;
  overflow: hidden;
}

.hero-luxury-title-main::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.4), transparent);
  animation: shimmerText 3s ease-in-out infinite;
}

.hero-luxury-title-accent {
  display: block;
  color: var(--color-vermilion);
  font-size: 0.6em;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-top: var(--space-sm);
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInDown 1s ease-out 0.8s forwards, pulseAccent 2s ease-in-out 2s infinite;
}

.hero-luxury-subtitle {
  font-size: clamp(1.125rem, 3.5vw, 1.75rem);
  color: rgba(243, 244, 246, 0.85);
  margin-bottom: var(--space-3xl);
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  animation: fadeInUp 1s ease-out 0.8s forwards;
}

.hero-luxury-actions {
  display: flex;
  gap: var(--space-lg);
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 1s ease-out 1.1s forwards;
}

.hero-luxury-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.hero-luxury-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--color-gold);
  border-radius: 50%;
  opacity: 0.6;
  animation: float 6s ease-in-out infinite;
}

.hero-luxury-particle:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.hero-luxury-particle:nth-child(2) { top: 60%; left: 20%; animation-delay: 1s; }
.hero-luxury-particle:nth-child(3) { top: 40%; left: 80%; animation-delay: 2s; }
.hero-luxury-particle:nth-child(4) { top: 80%; left: 70%; animation-delay: 1.5s; }
.hero-luxury-particle:nth-child(5) { top: 30%; left: 50%; animation-delay: 0.5s; }

.hero-services {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-black) 0%, var(--color-charcoal) 100%);
  border-bottom: 2px solid rgba(212, 175, 55, 0.2);
}

.hero-services-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.05;
  background-image: 
    repeating-linear-gradient(45deg, transparent, transparent 35px, var(--color-gold) 35px, var(--color-gold) 70px),
    repeating-linear-gradient(-45deg, transparent, transparent 35px, var(--color-gold) 35px, var(--color-gold) 70px);
  z-index: 1;
  animation: patternMove 20s linear infinite;
}

.hero-services-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
  transform: translateX(-100%);
  animation: slideAcross 8s ease-in-out infinite;
  z-index: 1;
}

.hero-services-slide:nth-child(2) {
  animation-delay: 2s;
}

.hero-services-slide:nth-child(3) {
  animation-delay: 4s;
}

.hero-services-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1100px;
  padding: var(--space-3xl) var(--space-xl);
}

.hero-services-title {
  font-size: clamp(2.5rem, 8vw, 5.5rem);
  margin-bottom: var(--space-lg);
  font-weight: 900;
  letter-spacing: -0.02em;
  position: relative;
  display: inline-block;
}

.hero-services-title::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -40px;
  width: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--color-vermilion), transparent);
  animation: expandLine 1.5s ease-out forwards, pulseLine 2s ease-in-out 2s infinite;
}

.hero-services-title::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -40px;
  width: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  animation: expandLine 1.5s ease-out 0.5s forwards, pulseLine 2s ease-in-out 2.5s infinite;
}

.hero-services-title-text {
  background: linear-gradient(135deg, var(--color-white) 0%, var(--color-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-services-subtitle {
  font-size: clamp(1rem, 3vw, 1.5rem);
  color: rgba(243, 244, 246, 0.75);
  margin-bottom: var(--space-2xl);
  line-height: 1.7;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-portfolio {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--color-black);
}

.hero-portfolio::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 30% 40%, rgba(212, 175, 55, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 70% 60%, rgba(185, 28, 28, 0.08) 0%, transparent 40%);
  animation: morphBackground 15s ease-in-out infinite;
  z-index: 1;
}

.hero-portfolio-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(8, 1fr);
  z-index: 1;
  opacity: 0.06;
  gap: 1px;
  pointer-events: none;
}

.hero-portfolio-grid::before {
  content: '';
  grid-column: 1 / -1;
  grid-row: 1 / -1;
  background-image: 
    repeating-linear-gradient(0deg, transparent, transparent calc(100% / 8 - 1px), var(--color-gold) calc(100% / 8 - 1px), var(--color-gold) calc(100% / 8)),
    repeating-linear-gradient(90deg, transparent, transparent calc(100% / 12 - 1px), var(--color-gold) calc(100% / 12 - 1px), var(--color-gold) calc(100% / 12));
  animation: pulseCell 3s ease-in-out infinite, gridPulse 4s ease-in-out infinite;
}

.hero-portfolio-cell {
  display: none;
}

.hero-portfolio-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 950px;
  padding: var(--space-3xl) var(--space-xl);
}

.hero-portfolio-title {
  font-size: clamp(2.5rem, 8vw, 5.5rem);
  margin-bottom: var(--space-xl);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.hero-portfolio-title-line {
  display: block;
  overflow: hidden;
}

.hero-portfolio-title-word {
  display: inline-block;
  background: linear-gradient(180deg, var(--color-white) 0%, var(--color-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: slideInWord 0.8s ease-out forwards;
  opacity: 0;
}

.hero-portfolio-title-word:nth-child(1) { animation-delay: 0.1s; }
.hero-portfolio-title-word:nth-child(2) { animation-delay: 0.3s; }
.hero-portfolio-title-word:nth-child(3) { animation-delay: 0.5s; }

.hero-portfolio-subtitle {
  font-size: clamp(1rem, 3vw, 1.5rem);
  color: rgba(243, 244, 246, 0.8);
  margin-bottom: var(--space-2xl);
  line-height: 1.6;
}

.hero-contact {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(180deg, var(--color-black) 0%, var(--color-charcoal) 100%);
}

.hero-contact::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
  animation: expandPulse 4s ease-in-out infinite;
  z-index: 1;
}

.hero-contact::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(185, 28, 28, 0.08) 0%, transparent 70%);
  animation: expandPulse 4s ease-in-out 2s infinite;
  z-index: 1;
}

.hero-contact-rings {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  z-index: 1;
  opacity: 0.1;
}

.hero-contact-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 2px solid var(--color-gold);
  border-radius: 50%;
  animation: expandRing 4s ease-in-out infinite;
}

.hero-contact-ring:nth-child(1) {
  width: 200px;
  height: 200px;
  animation-delay: 0s;
}

.hero-contact-ring:nth-child(2) {
  width: 400px;
  height: 400px;
  animation-delay: 1s;
}

.hero-contact-ring:nth-child(3) {
  width: 600px;
  height: 600px;
  animation-delay: 2s;
}

.hero-contact-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.hero-contact-dot {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--color-gold);
  border-radius: 50%;
  opacity: 0.6;
  animation: floatDot 8s ease-in-out infinite;
}

.hero-contact-dot:nth-child(1) { top: 20%; left: 15%; animation-delay: 0s; }
.hero-contact-dot:nth-child(2) { top: 40%; left: 25%; animation-delay: 1s; }
.hero-contact-dot:nth-child(3) { top: 60%; left: 75%; animation-delay: 2s; }
.hero-contact-dot:nth-child(4) { top: 80%; left: 65%; animation-delay: 1.5s; }
.hero-contact-dot:nth-child(5) { top: 30%; left: 85%; animation-delay: 0.5s; }
.hero-contact-dot:nth-child(6) { top: 70%; left: 10%; animation-delay: 2.5s; }

.hero-contact-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: var(--space-3xl) var(--space-xl);
}

.hero-contact-title {
  font-size: clamp(2.5rem, 8vw, 5.5rem);
  margin-bottom: var(--space-lg);
  font-weight: 900;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--color-white) 0%, var(--color-gold) 50%, var(--color-vermilion) 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientFlow 5s ease infinite;
}

.hero-contact-subtitle {
  font-size: clamp(1rem, 3vw, 1.5rem);
  color: rgba(243, 244, 246, 0.8);
  margin-bottom: var(--space-2xl);
  line-height: 1.7;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes shimmerBg {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.6; }
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) translateX(0);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-30px) translateX(20px);
    opacity: 1;
  }
}

@keyframes expandLine {
  from {
    width: 0;
    opacity: 0;
  }
  to {
    width: 80px;
    opacity: 1;
  }
}

@keyframes pulseCell {
  0%, 100% { opacity: 0.06; }
  50% { opacity: 0.18; }
}

@keyframes gridPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
}

@keyframes slideInWord {
  from {
    opacity: 0;
    transform: translateY(100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes expandRing {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.1;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.3;
  }
}

@keyframes gradientFlow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero-elegant {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(180deg, var(--color-black) 0%, #0f0f0f 50%, var(--color-black) 100%);
}

.hero-elegant-lines {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.08;
}

.hero-elegant-line {
  position: absolute;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  height: 1px;
  animation: lineMove 12s linear infinite;
}

.hero-elegant-line:nth-child(1) {
  top: 20%;
  width: 60%;
  left: -60%;
  animation-delay: 0s;
}

.hero-elegant-line:nth-child(2) {
  top: 50%;
  width: 80%;
  left: -80%;
  animation-delay: 3s;
}

.hero-elegant-line:nth-child(3) {
  top: 80%;
  width: 70%;
  left: -70%;
  animation-delay: 6s;
}

.hero-elegant-geometric {
  position: absolute;
  width: 200px;
  height: 200px;
  border: 2px solid rgba(212, 175, 55, 0.2);
  transform: rotate(45deg);
  animation: rotateGeometric 20s linear infinite;
  z-index: 1;
}

.hero-elegant-geometric:nth-child(1) {
  top: 10%;
  right: 10%;
  border-radius: 20% 80% 20% 80%;
}

.hero-elegant-geometric:nth-child(2) {
  bottom: 15%;
  left: 15%;
  width: 150px;
  height: 150px;
  animation-duration: 25s;
  animation-direction: reverse;
  border-radius: 80% 20% 80% 20%;
}

.hero-elegant-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1000px;
  padding: var(--space-3xl) var(--space-xl);
}

.hero-elegant-title {
  font-size: clamp(2.5rem, 8vw, 6rem);
  margin-bottom: var(--space-xl);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  position: relative;
}

.hero-elegant-title-main {
  display: block;
  color: var(--color-white);
  position: relative;
  animation: titleReveal 1.2s ease-out;
}

.hero-elegant-title-main::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-vermilion), var(--color-gold));
  animation: underlineExpand 1s ease-out 0.8s forwards;
}

.hero-elegant-title-accent {
  display: block;
  color: var(--color-gold);
  font-size: 0.5em;
  font-weight: 700;
  letter-spacing: 0.15em;
  margin-top: var(--space-sm);
  text-transform: uppercase;
  opacity: 0;
  animation: fadeInScale 1s ease-out 1s forwards;
}

.hero-elegant-subtitle {
  font-size: clamp(1rem, 3vw, 1.5rem);
  color: rgba(243, 244, 246, 0.8);
  margin-bottom: var(--space-3xl);
  line-height: 1.7;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  animation: fadeInUp 1s ease-out 1.3s forwards;
}

.hero-layered {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--color-black);
}

.hero-layered-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-layered-layer {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 50%, rgba(185, 28, 28, 0.05) 100%);
  animation: layerShift 8s ease-in-out infinite;
}

.hero-layered-layer:nth-child(1) {
  animation-delay: 0s;
  opacity: 0.6;
}

.hero-layered-layer:nth-child(2) {
  animation-delay: 2s;
  opacity: 0.4;
  background: linear-gradient(225deg, rgba(185, 28, 28, 0.05) 0%, transparent 50%, rgba(212, 175, 55, 0.05) 100%);
}

.hero-layered-layer:nth-child(3) {
  animation-delay: 4s;
  opacity: 0.3;
}

.hero-layered-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1100px;
  padding: var(--space-3xl) var(--space-xl);
}

.hero-layered-title {
  font-size: clamp(2.5rem, 8vw, 5.5rem);
  margin-bottom: var(--space-lg);
  font-weight: 900;
  letter-spacing: -0.02em;
  position: relative;
  display: inline-block;
}

.hero-layered-title-text {
  background: linear-gradient(135deg, var(--color-white) 0%, var(--color-gold) 50%, var(--color-white) 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease infinite, titleSlide 1s ease-out;
  position: relative;
}

.hero-layered-title-text::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--color-white) 0%, var(--color-gold) 50%, var(--color-white) 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: blur(8px);
  opacity: 0.5;
  z-index: -1;
  animation: gradientShift 4s ease infinite;
}

.hero-layered-subtitle {
  font-size: clamp(1rem, 3vw, 1.5rem);
  color: rgba(243, 244, 246, 0.75);
  margin-bottom: var(--space-2xl);
  line-height: 1.7;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-creative {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--color-black);
}

.hero-creative-canvas {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.1;
}

.hero-creative-splash {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
  animation: splashMove 15s ease-in-out infinite;
  z-index: 1;
}

.hero-creative-splash:nth-child(1) {
  top: -100px;
  left: -100px;
  animation-delay: 0s;
}

.hero-creative-splash:nth-child(2) {
  bottom: -150px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(185, 28, 28, 0.12) 0%, transparent 70%);
  animation-delay: 5s;
}

.hero-creative-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 950px;
  padding: var(--space-3xl) var(--space-xl);
}

.hero-creative-title {
  font-size: clamp(2.5rem, 8vw, 5.5rem);
  margin-bottom: var(--space-xl);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.hero-creative-title-word {
  display: inline-block;
  background: linear-gradient(180deg, var(--color-white) 0%, var(--color-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: wordReveal 0.8s ease-out forwards;
  opacity: 0;
  transform: translateY(50px);
}

.hero-creative-title-word:nth-child(1) { animation-delay: 0.2s; }
.hero-creative-title-word:nth-child(2) { animation-delay: 0.4s; }
.hero-creative-title-word:nth-child(3) { animation-delay: 0.6s; }

.hero-creative-subtitle {
  font-size: clamp(1rem, 3vw, 1.5rem);
  color: rgba(243, 244, 246, 0.8);
  margin-bottom: var(--space-2xl);
  line-height: 1.6;
}

.hero-minimal {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(180deg, var(--color-black) 0%, var(--color-charcoal) 100%);
}

.hero-minimal-accent {
  position: absolute;
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, transparent, var(--color-gold), transparent);
  left: 20%;
  animation: accentPulse 3s ease-in-out infinite;
  z-index: 1;
  opacity: 0.3;
}

.hero-minimal-accent:nth-child(2) {
  left: 50%;
  animation-delay: 1s;
}

.hero-minimal-accent:nth-child(3) {
  left: 80%;
  animation-delay: 2s;
}

.hero-minimal-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--color-gold);
  border-radius: 50%;
  animation: dotFloat 6s ease-in-out infinite;
  z-index: 1;
  opacity: 0.6;
}

.hero-minimal-dot:nth-child(4) {
  top: 25%;
  left: 15%;
  animation-delay: 0s;
}

.hero-minimal-dot:nth-child(5) {
  top: 60%;
  left: 30%;
  animation-delay: 1.5s;
}

.hero-minimal-dot:nth-child(6) {
  top: 40%;
  right: 25%;
  animation-delay: 3s;
}

.hero-minimal-dot:nth-child(7) {
  bottom: 30%;
  right: 15%;
  animation-delay: 4.5s;
}

.hero-minimal-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: var(--space-3xl) var(--space-xl);
}

.hero-minimal-title {
  font-size: clamp(2.5rem, 8vw, 5.5rem);
  margin-bottom: var(--space-lg);
  font-weight: 900;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--color-white) 0%, var(--color-gold) 50%, var(--color-vermilion) 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientFlow 5s ease infinite, titleFadeIn 1s ease-out;
}

.hero-minimal-subtitle {
  font-size: clamp(1rem, 3vw, 1.5rem);
  color: rgba(243, 244, 246, 0.8);
  margin-bottom: var(--space-2xl);
  line-height: 1.7;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

@keyframes lineMove {
  0% {
    left: -60%;
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    left: 100%;
    opacity: 0;
  }
}

@keyframes rotateGeometric {
  from {
    transform: rotate(45deg);
  }
  to {
    transform: rotate(405deg);
  }
}

@keyframes titleReveal {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes underlineExpand {
  from {
    width: 0;
  }
  to {
    width: 200px;
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes layerShift {
  0%, 100% {
    transform: translateX(0) translateY(0);
    opacity: 0.6;
  }
  50% {
    transform: translateX(20px) translateY(-20px);
    opacity: 0.8;
  }
}

@keyframes titleSlide {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes splashMove {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.15;
  }
  50% {
    transform: translate(50px, -50px) scale(1.2);
    opacity: 0.25;
  }
}

@keyframes wordReveal {
  from {
    opacity: 0;
    transform: translateY(50px) rotateX(90deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotateX(0deg);
  }
}

@keyframes accentPulse {
  0%, 100% {
    opacity: 0.2;
    transform: scaleY(1);
  }
  50% {
    opacity: 0.5;
    transform: scaleY(1.1);
  }
}

@keyframes dotFloat {
  0%, 100% {
    transform: translate(0, 0);
    opacity: 0.6;
  }
  25% {
    transform: translate(15px, -20px);
    opacity: 1;
  }
  50% {
    transform: translate(-10px, -15px);
    opacity: 0.8;
  }
  75% {
    transform: translate(20px, 10px);
    opacity: 0.9;
  }
}

@keyframes titleFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes textReveal {
  from {
    opacity: 0;
    transform: translateY(50px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes shimmerText {
  0% { left: -100%; }
  50% { left: 100%; }
  100% { left: 100%; }
}

@keyframes pulseAccent {
  0%, 100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
  50% {
    transform: translateY(-5px) scale(1.02);
    opacity: 0.9;
  }
}

@keyframes pulseGlow {
  0%, 100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}

@keyframes floatShape {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 0.3;
  }
  25% {
    transform: translate(30px, -30px) rotate(90deg);
    opacity: 0.5;
  }
  50% {
    transform: translate(-20px, 20px) rotate(180deg);
    opacity: 0.4;
  }
  75% {
    transform: translate(20px, 30px) rotate(270deg);
    opacity: 0.6;
  }
}

@keyframes patternMove {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(70px, 70px);
  }
}

@keyframes slideAcross {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translateX(100%);
    opacity: 0;
  }
}

@keyframes pulseLine {
  0%, 100% {
    opacity: 1;
    transform: scaleX(1);
  }
  50% {
    opacity: 0.7;
    transform: scaleX(1.1);
  }
}

@keyframes morphBackground {
  0%, 100% {
    transform: scale(1) rotate(0deg);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.1) rotate(180deg);
    opacity: 1;
  }
}

@keyframes expandPulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.3;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.6;
  }
}

@keyframes floatDot {
  0%, 100% {
    transform: translate(0, 0);
    opacity: 0.6;
  }
  25% {
    transform: translate(20px, -30px);
    opacity: 1;
  }
  50% {
    transform: translate(-15px, -20px);
    opacity: 0.8;
  }
  75% {
    transform: translate(25px, 15px);
    opacity: 0.9;
  }
}

.btn-primary {
  display: inline-block;
  padding: var(--space-md) var(--space-2xl);
  background: var(--color-vermilion);
  color: var(--color-white);
  border: 2px solid var(--color-vermilion);
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: clamp(0.875rem, 2vw, 1rem);
  cursor: pointer;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-secondary {
  display: inline-block;
  padding: var(--space-md) var(--space-2xl);
  background: transparent;
  color: var(--color-gold);
  border: 2px solid var(--color-gold);
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: clamp(0.875rem, 2vw, 1rem);
  cursor: pointer;
  transition: all var(--transition-base);
}

.btn-secondary:hover {
  background: var(--color-gold);
  color: var(--color-black);
  transform: translateY(-2px);
}

.section-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: var(--space-3xl) var(--space-xl);
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-3xl);
  position: relative;
  display: inline-block;
  width: 100%;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -var(--space-md);
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-2xl);
  margin-top: var(--space-3xl);
}

.feature-card {
  background: rgba(31, 41, 55, 0.5);
  padding: var(--space-2xl);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(212, 175, 55, 0.1);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
  transition: left 0.5s;
}

.feature-card:hover::before {
  left: 100%;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-gold);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--color-gold);
  margin-bottom: var(--space-md);
}

.feature-title {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  margin-bottom: var(--space-sm);
  color: var(--color-white);
}

.asymmetrical-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-2xl);
  margin-top: var(--space-3xl);
}

.asymmetrical-item {
  position: relative;
  padding: var(--space-2xl);
  background: rgba(31, 41, 55, 0.3);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(212, 175, 55, 0.1);
  transition: all var(--transition-slow);
}

.asymmetrical-item:nth-child(odd) {
  transform: rotate(-1deg);
  margin-top: var(--space-xl);
}

.asymmetrical-item:nth-child(even) {
  transform: rotate(1deg);
  margin-bottom: var(--space-xl);
}

.asymmetrical-item:hover {
  transform: rotate(0deg) scale(1.02);
  border-color: var(--color-gold);
  box-shadow: var(--shadow-lg);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-2xl);
  margin-top: var(--space-3xl);
}

.product-card {
  background: rgba(31, 41, 55, 0.5);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.1);
  transition: all var(--transition-base);
  position: relative;
}

.product-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-gold);
}

.product-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--color-charcoal) 0%, var(--color-black) 100%);
}

.product-info {
  padding: var(--space-xl);
}

.product-title {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  margin-bottom: var(--space-sm);
  color: var(--color-gold);
}

.product-price {
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: var(--color-vermilion);
  font-weight: 700;
  margin-top: var(--space-md);
}

.contact-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: var(--space-3xl) var(--space-xl);
}

.contact-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(31, 41, 55, 0.5);
  padding: var(--space-3xl);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(212, 175, 55, 0.2);
  box-shadow: var(--shadow-lg);
}

.form-group {
  margin-bottom: var(--space-xl);
}

.form-label {
  display: block;
  margin-bottom: var(--space-sm);
  color: var(--color-gold);
  font-weight: 600;
  font-size: clamp(0.875rem, 2vw, 1rem);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: var(--space-md);
  background: rgba(10, 10, 10, 0.6);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius-md);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 2vw, 1rem);
  transition: all var(--transition-base);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-textarea {
  min-height: 150px;
  resize: vertical;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
}

.checkbox-input {
  margin-top: 4px;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.checkbox-label {
  font-size: clamp(0.75rem, 1.5vw, 0.875rem);
  color: rgba(243, 244, 246, 0.8);
  line-height: 1.5;
}

.footer-container {
  padding: var(--space-2xl) var(--space-xl);
  text-align: center;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  margin-top: var(--space-3xl);
  background: rgba(10, 10, 10, 0.5);
}

.footer-text {
  font-size: clamp(0.75rem, 1.5vw, 0.875rem);
  color: rgba(243, 244, 246, 0.6);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
  text-align: left;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 var(--space-xl);
}

.footer-section h4 {
  color: var(--color-gold);
  margin-bottom: var(--space-md);
  font-size: 1rem;
  font-weight: 600;
}

.footer-section p {
  font-size: 0.875rem;
  color: rgba(243, 244, 246, 0.7);
  line-height: 1.6;
}

.footer-section a {
  color: rgba(243, 244, 246, 0.7);
  display: block;
  margin-bottom: var(--space-xs);
  transition: color var(--transition-base);
}

.footer-section a:hover {
  color: var(--color-gold);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-3xl);
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  cursor: pointer;
  transition: transform var(--transition-slow);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
}

.map-container {
  margin-top: var(--space-3xl);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 2px solid rgba(212, 175, 55, 0.2);
  height: 450px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  background: var(--color-charcoal);
  position: relative;
  transition: all var(--transition-base);
}

.map-container:hover {
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.2);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.cookie-popup {
  position: fixed;
  bottom: var(--space-xl);
  left: var(--space-xl);
  right: var(--space-xl);
  max-width: 600px;
  margin: 0 auto;
  background: rgba(31, 41, 55, 0.98);
  padding: var(--space-xl);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-gold);
  box-shadow: var(--shadow-lg);
  z-index: 10000;
  display: none;
  animation: slideUp 0.5s ease-out;
}

.cookie-popup.show {
  display: block;
}

.cookie-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.cookie-text {
  font-size: clamp(0.875rem, 2vw, 1rem);
  color: var(--color-white);
}

.cookie-buttons {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.error-page {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-3xl);
}

.error-code {
  font-size: clamp(4rem, 10vw, 8rem);
  color: var(--color-vermilion);
  font-weight: 700;
  margin-bottom: var(--space-lg);
}

.thank-you-content {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-3xl);
}

.thank-you-icon {
  font-size: 4rem;
  color: var(--color-gold);
  margin-bottom: var(--space-xl);
  animation: bounce 1s ease-in-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shimmer {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

.modern-page-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-3xl) var(--space-xl);
  background: linear-gradient(180deg, var(--color-black) 0%, rgba(31, 41, 55, 0.3) 100%);
  overflow: hidden;
}

.modern-page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
  z-index: 1;
}

.modern-page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

.modern-page-title {
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 900;
  margin-bottom: var(--space-lg);
  background: linear-gradient(135deg, var(--color-white) 0%, var(--color-gold) 50%, var(--color-white) 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease infinite;
  line-height: 1.2;
}

.modern-page-subtitle {
  font-size: clamp(0.875rem, 2vw, 1rem);
  color: rgba(243, 244, 246, 0.6);
  margin-bottom: var(--space-xl);
}

.modern-content-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  padding: var(--space-3xl) var(--space-xl);
}

.modern-content-card {
  background: linear-gradient(135deg, rgba(31, 41, 55, 0.4) 0%, rgba(10, 10, 10, 0.6) 100%);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  margin-bottom: var(--space-xl);
  position: relative;
  overflow: hidden;
  transition: all var(--transition-base);
}

.modern-content-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--color-gold) 0%, var(--color-vermilion) 100%);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.modern-content-card:hover::before {
  opacity: 1;
}

.modern-content-card:hover {
  transform: translateX(8px);
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.modern-content-card-title {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  margin-bottom: var(--space-md);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.modern-content-card-title::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--color-vermilion);
  border-radius: 50%;
  flex-shrink: 0;
}

.modern-content-card-text {
  color: rgba(243, 244, 246, 0.85);
  line-height: 1.8;
  font-size: clamp(0.875rem, 2vw, 1rem);
}

.modern-error-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-3xl);
  background: radial-gradient(ellipse at center, rgba(185, 28, 28, 0.1) 0%, var(--color-black) 70%);
  overflow: hidden;
}

.modern-error-code {
  font-size: clamp(6rem, 15vw, 12rem);
  font-weight: 900;
  color: var(--color-vermilion);
  line-height: 1;
  margin-bottom: var(--space-lg);
  position: relative;
  z-index: 2;
  text-shadow: 0 0 40px rgba(185, 28, 28, 0.3);
  animation: pulseError 2s ease-in-out infinite;
}

.modern-error-title {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: var(--space-lg);
  color: var(--color-white);
  text-align: center;
}

.modern-error-text {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(243, 244, 246, 0.7);
  text-align: center;
  max-width: 600px;
  margin-bottom: var(--space-2xl);
  line-height: 1.6;
}

.modern-thank-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-3xl);
  background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.1) 0%, var(--color-black) 70%);
  overflow: hidden;
}

.modern-thank-icon-wrapper {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-vermilion) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-2xl);
  position: relative;
  animation: scaleIn 0.6s ease-out;
  box-shadow: 0 8px 32px rgba(212, 175, 55, 0.3);
}

.modern-thank-icon-wrapper::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-vermilion) 100%);
  opacity: 0.3;
  z-index: -1;
  animation: pulseRing 2s ease-in-out infinite;
}

.modern-thank-icon {
  font-size: 3.5rem;
  color: var(--color-black);
  z-index: 1;
}

.modern-thank-title {
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 900;
  margin-bottom: var(--space-lg);
  background: linear-gradient(135deg, var(--color-white) 0%, var(--color-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
}

.modern-thank-text {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(243, 244, 246, 0.8);
  text-align: center;
  max-width: 700px;
  margin-bottom: var(--space-2xl);
  line-height: 1.7;
}

.modern-steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-3xl);
}

.modern-step-card {
  background: linear-gradient(135deg, rgba(31, 41, 55, 0.5) 0%, rgba(10, 10, 10, 0.7) 100%);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-base);
}

.modern-step-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.modern-step-card:hover::after {
  opacity: 1;
}

.modern-step-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-gold);
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.2);
}

.modern-step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-vermilion) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-black);
  position: relative;
  z-index: 1;
}

.modern-step-title {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-weight: 600;
  margin-bottom: var(--space-sm);
  color: var(--color-white);
}

.modern-step-text {
  color: rgba(243, 244, 246, 0.7);
  font-size: clamp(0.875rem, 2vw, 1rem);
  line-height: 1.6;
}

.modern-quick-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-3xl);
}

.modern-quick-link {
  background: linear-gradient(135deg, rgba(31, 41, 55, 0.6) 0%, rgba(10, 10, 10, 0.8) 100%);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
  transition: all var(--transition-base);
  text-decoration: none;
  display: block;
}

.modern-quick-link:hover {
  transform: translateY(-4px);
  border-color: var(--color-gold);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.2);
}

.modern-quick-link-icon {
  font-size: 2.5rem;
  color: var(--color-gold);
  margin-bottom: var(--space-md);
}

.modern-quick-link-title {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: var(--space-xs);
}

.modern-quick-link-text {
  font-size: clamp(0.75rem, 1.5vw, 0.875rem);
  color: rgba(243, 244, 246, 0.6);
}

@keyframes pulseError {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.9;
  }
}

@keyframes scaleIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes pulseRing {
  0%, 100% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.1;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    flex-direction: column;
    padding: var(--space-3xl) var(--space-xl);
    transition: right var(--transition-slow);
    z-index: 999;
    border-left: 1px solid rgba(212, 175, 55, 0.2);
  }

  .nav-menu.active {
    right: 0;
  }

  .burger-toggle {
    display: block;
  }

  .header-container {
    padding: var(--space-md) var(--space-lg);
  }

  .section-container {
    padding: var(--space-2xl) var(--space-lg);
  }

  .contact-wrapper {
    padding: var(--space-xl);
  }

  .asymmetrical-item:nth-child(odd),
  .asymmetrical-item:nth-child(even) {
    transform: rotate(0deg);
    margin: 0;
  }

  .cookie-popup {
    left: var(--space-md);
    right: var(--space-md);
    bottom: var(--space-md);
  }
}

@media (max-width: 320px) {
  html {
    font-size: 14px;
  }

  body {
    font-size: 0.875rem;
  }

  .header-container {
    padding: var(--space-sm) var(--space-md);
  }

  .logo-text {
    font-size: 1rem;
  }

  .nav-menu {
    width: 100%;
    right: -100%;
    padding: var(--space-xl) var(--space-md);
  }

  .section-container {
    padding: var(--space-xl) var(--space-md);
  }

  .hero-content,
  .hero-luxury-content,
  .hero-services-content,
  .hero-portfolio-content,
  .hero-contact-content,
  .hero-elegant-content,
  .hero-layered-content,
  .hero-creative-content,
  .hero-minimal-content {
    padding: var(--space-lg) var(--space-md);
  }

  .hero-title,
  .hero-luxury-title,
  .hero-services-title,
  .hero-portfolio-title,
  .hero-contact-title,
  .hero-elegant-title,
  .hero-layered-title,
  .hero-creative-title,
  .hero-minimal-title,
  .modern-page-title {
    font-size: 1.75rem;
    line-height: 1.2;
  }

  .hero-subtitle,
  .hero-luxury-subtitle,
  .hero-services-subtitle,
  .hero-portfolio-subtitle,
  .hero-contact-subtitle,
  .hero-elegant-subtitle,
  .hero-layered-subtitle,
  .hero-creative-subtitle,
  .hero-minimal-subtitle {
    font-size: 0.875rem;
  }

  .btn-primary,
  .btn-secondary {
    padding: var(--space-sm) var(--space-lg);
    font-size: 0.875rem;
    width: 100%;
    text-align: center;
  }

  .hero-luxury-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-luxury-actions .btn-primary,
  .hero-luxury-actions .btn-secondary {
    width: 100%;
  }

  .features-grid,
  .product-grid,
  .gallery-grid,
  .asymmetrical-layout,
  .modern-steps-grid,
  .modern-quick-links {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .feature-card,
  .product-card,
  .modern-content-card,
  .modern-step-card {
    padding: var(--space-lg);
    margin-bottom: var(--space-lg);
  }

  .feature-icon {
    font-size: 2rem;
  }

  .feature-title,
  .product-title,
  .modern-content-card-title,
  .modern-step-title {
    font-size: 1.125rem;
  }

  .product-price {
    font-size: 1.5rem;
  }

  .contact-wrapper {
    padding: var(--space-lg);
  }

  .form-input,
  .form-textarea {
    font-size: 0.875rem;
    padding: var(--space-sm);
  }

  .form-textarea {
    min-height: 120px;
  }

  .modern-page-hero {
    min-height: 40vh;
    padding: var(--space-2xl) var(--space-md);
  }

  .modern-page-title {
    font-size: 1.75rem;
  }

  .modern-page-subtitle {
    font-size: 0.75rem;
  }

  .modern-content-wrapper {
    padding: var(--space-xl) var(--space-md);
  }

  .modern-content-card {
    padding: var(--space-lg);
  }

  .modern-content-card-title {
    font-size: 1.125rem;
    flex-wrap: wrap;
    gap: var(--space-xs);
  }

  .modern-content-card-title i {
    font-size: 1.25rem;
  }

  .modern-content-card-text {
    font-size: 0.875rem;
    line-height: 1.6;
  }

  .modern-error-hero {
    min-height: 60vh;
    padding: var(--space-2xl) var(--space-md);
  }

  .modern-error-code {
    font-size: 5rem;
  }

  .modern-error-title {
    font-size: 1.25rem;
  }

  .modern-error-text {
    font-size: 0.875rem;
  }

  .modern-thank-hero {
    min-height: 60vh;
    padding: var(--space-2xl) var(--space-md);
  }

  .modern-thank-icon-wrapper {
    width: 80px;
    height: 80px;
  }

  .modern-thank-icon {
    font-size: 2.5rem;
  }

  .modern-thank-title {
    font-size: 1.5rem;
  }

  .modern-thank-text {
    font-size: 0.875rem;
  }

  .modern-step-number {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  .modern-step-title {
    font-size: 1rem;
  }

  .modern-step-text {
    font-size: 0.875rem;
  }

  .modern-quick-link {
    padding: var(--space-lg);
  }

  .modern-quick-link-icon {
    font-size: 2rem;
  }

  .modern-quick-link-title {
    font-size: 1rem;
  }

  .modern-quick-link-text {
    font-size: 0.75rem;
  }

  .cookie-popup {
    left: var(--space-sm);
    right: var(--space-sm);
    bottom: var(--space-sm);
    padding: var(--space-lg);
  }

  .cookie-text {
    font-size: 0.875rem;
  }

  .cookie-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cookie-buttons .btn-primary,
  .cookie-buttons .btn-secondary {
    width: 100%;
  }

  .footer-container {
    padding: var(--space-lg) var(--space-md);
  }

  .footer-text {
    font-size: 0.75rem;
    line-height: 1.6;
    word-break: break-word;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    text-align: center;
  }

  .footer-section {
    text-align: center;
  }

  .map-container {
    height: 280px;
    border-radius: var(--radius-md);
    margin-top: var(--space-xl);
  }

  .asymmetrical-item:nth-child(odd),
  .asymmetrical-item:nth-child(even) {
    transform: rotate(0deg);
    margin: 0;
  }

  .hero-luxury,
  .hero-elegant,
  .hero-layered,
  .hero-creative,
  .hero-minimal {
    min-height: 70vh;
  }

  .hero-luxury-particles,
  .hero-elegant-lines,
  .hero-elegant-geometric,
  .hero-layered-layer,
  .hero-creative-splash,
  .hero-minimal-accent,
  .hero-minimal-dot {
    display: none;
  }

  .hero-luxury-title-main,
  .hero-elegant-title-main,
  .hero-layered-title-text,
  .hero-creative-title-word,
  .hero-minimal-title {
    font-size: 1.5rem;
  }

  .hero-luxury-title-accent,
  .hero-elegant-title-accent {
    font-size: 0.9rem;
    margin-top: var(--space-xs);
  }

  .hero-services,
  .hero-layered {
    min-height: 65vh;
  }

  .hero-services-pattern,
  .hero-layered-layer {
    opacity: 0.02;
  }

  .hero-services-slide {
    display: none;
  }

  .hero-services-title-text {
    font-size: 1.5rem;
  }

  .hero-portfolio,
  .hero-creative {
    min-height: 70vh;
  }

  .hero-portfolio-grid,
  .hero-creative-canvas {
    opacity: 0.02;
  }

  .hero-portfolio-title-word,
  .hero-creative-title-word {
    font-size: 1.5rem;
  }

  .hero-contact,
  .hero-minimal {
    min-height: 65vh;
  }

  .hero-contact-rings {
    width: 300px;
    height: 300px;
  }

  .hero-contact-ring:nth-child(1) {
    width: 120px;
    height: 120px;
  }

  .hero-contact-ring:nth-child(2) {
    width: 220px;
    height: 220px;
  }

  .hero-contact-ring:nth-child(3) {
    width: 300px;
    height: 300px;
  }

  .hero-contact-dot {
    width: 3px;
    height: 3px;
  }

  .hero-contact-title {
    font-size: 1.5rem;
  }

  .hero-elegant-title-main::after {
    width: 120px;
  }

  .hero-layered-title-text::before {
    display: none;
  }

  .modern-page-hero {
    min-height: 35vh;
    padding: var(--space-xl) var(--space-md);
  }

  .section-title {
    font-size: 1.5rem;
    margin-bottom: var(--space-xl);
  }

  .section-title::after {
    width: 60px;
    height: 2px;
  }

  .product-image {
    height: 220px;
  }

  .gallery-item {
    aspect-ratio: 3/2;
  }

  .burger-toggle {
    font-size: 1.25rem;
    padding: var(--space-xs);
  }

  .nav-link {
    font-size: 0.875rem;
    padding: var(--space-sm) 0;
  }

  h1 {
    font-size: 1.75rem;
    margin-bottom: var(--space-md);
  }

  h2 {
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
  }

  h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
  }

  p {
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: var(--space-md);
  }

  .btn-primary,
  .btn-secondary {
    min-height: 44px;
    touch-action: manipulation;
  }

  .form-label {
    font-size: 0.875rem;
    margin-bottom: var(--space-xs);
  }

  .checkbox-label {
    font-size: 0.75rem;
    line-height: 1.5;
  }

  .checkbox-input {
    width: 20px;
    height: 20px;
    min-width: 20px;
    margin-top: 2px;
  }

  .feature-card::before,
  .modern-content-card::before {
    display: none;
  }

  .modern-content-card:hover {
    transform: translateX(0);
  }

  .hero-luxury::before,
  .hero-luxury::after {
    animation-duration: 30s;
  }

  .hero-services-pattern {
    animation-duration: 30s;
  }

  .hero-portfolio::before {
    animation-duration: 20s;
  }

  .hero-contact::before,
  .hero-contact::after {
    animation-duration: 6s;
  }

  * {
    -webkit-tap-highlight-color: transparent;
  }

  a, button {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  img {
    max-width: 100%;
    height: auto;
  }

  .hero-luxury-content,
  .hero-services-content,
  .hero-portfolio-content,
  .hero-contact-content,
  .hero-elegant-content,
  .hero-layered-content,
  .hero-creative-content,
  .hero-minimal-content {
    max-width: 100%;
  }

  .contact-section {
    min-height: auto;
    padding: var(--space-xl) var(--space-md);
  }

  .contact-wrapper {
    padding: var(--space-lg);
    margin: 0;
    border-radius: var(--radius-lg);
    max-width: 100%;
  }

  .contact-wrapper > div[style*="grid"] {
    grid-template-columns: 1fr !important;
    gap: var(--space-lg) !important;
    margin-bottom: var(--space-xl) !important;
  }

  .contact-wrapper .feature-card {
    padding: var(--space-md);
    margin-bottom: var(--space-md);
  }

  .contact-wrapper .feature-icon {
    font-size: 1.75rem;
    margin-bottom: var(--space-sm);
  }

  .contact-wrapper .feature-title {
    font-size: 1rem;
    margin-bottom: var(--space-xs);
  }

  .contact-wrapper .feature-card p {
    font-size: 0.8125rem;
    line-height: 1.5;
    margin-bottom: var(--space-xs);
  }

  .contact-wrapper .feature-card a {
    font-size: 1rem;
    word-break: break-all;
    display: block;
    margin-top: var(--space-xs);
    padding: var(--space-xs) 0;
  }

  .contact-form {
    margin-top: var(--space-lg);
  }

  .form-group {
    margin-bottom: var(--space-lg);
  }

  .form-label {
    font-size: 0.875rem;
    margin-bottom: var(--space-xs);
    display: block;
  }

  .form-input,
  .form-textarea {
    width: 100%;
    padding: var(--space-sm);
    font-size: 0.875rem;
    min-height: 44px;
    border-radius: var(--radius-md);
    box-sizing: border-box;
  }

  .form-textarea {
    min-height: 100px;
    resize: vertical;
  }

  .checkbox-group {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-xs);
    margin-bottom: var(--space-lg);
  }

  .checkbox-input {
    width: 20px;
    height: 20px;
    min-width: 20px;
    margin-top: 2px;
    flex-shrink: 0;
  }

  .checkbox-label {
    font-size: 0.75rem;
    line-height: 1.5;
    flex: 1;
  }

  .checkbox-label a {
    word-break: break-word;
  }

  .contact-wrapper .btn-primary {
    width: 100%;
    padding: var(--space-sm) var(--space-lg);
    font-size: 0.875rem;
    min-height: 44px;
    margin-top: var(--space-md);
  }

  .hero-minimal {
    min-height: 60vh;
    padding: var(--space-xl) var(--space-md);
  }

  .hero-minimal-title {
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
  }

  .hero-minimal-subtitle {
    font-size: 0.875rem;
    margin-bottom: var(--space-xl);
    line-height: 1.6;
  }

  .hero-minimal-accent,
  .hero-minimal-dot {
    display: none;
  }
}

