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

:root {
  --color-blush: #F7CAC9;
  --color-plum: #6B2D5C;
  --color-champagne: #F1E3D3;
  --color-teal: #3AAFA9;
  --color-lavender: #C8A2C8;
  --color-white: #FFFFFF;
  --color-dark: #2A2A2A;
  
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Outfit', sans-serif;
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 3rem;
  --space-xl: 5rem;
  
  --radius-sm: 0.5rem;
  --radius-md: 1rem;
  --radius-lg: 2rem;
  
  --shadow-sm: 0 2px 8px rgba(107, 45, 92, 0.08);
  --shadow-md: 0 4px 20px rgba(107, 45, 92, 0.12);
  --shadow-lg: 0 8px 40px rgba(107, 45, 92, 0.16);
  
  --transition-fast: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-luxury: 0.8s cubic-bezier(0.22, 1, 0.36, 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.95rem;
  line-height: 1.6;
  color: var(--color-dark);
  background: var(--color-white);
  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;
}

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

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.95rem;
}

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

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

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

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

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: var(--space-md) 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0) 100%);
  backdrop-filter: blur(10px);
  transition: all var(--transition-smooth);
}

.header.scrolled {
  position: fixed;
  background: rgba(255,255,255,0.98);
  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;
}

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

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

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

.nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-dark);
  position: relative;
  padding: var(--space-xs) 0;
  letter-spacing: 0.03em;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-teal);
  transition: width var(--transition-fast);
}

.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: 28px;
  height: 2px;
  background: var(--color-plum);
  transition: all var(--transition-fast);
  border-radius: 2px;
}

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

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

.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  animation: float 20s ease-in-out infinite;
}

.hero-shape:nth-child(1) {
  width: 500px;
  height: 500px;
  background: var(--color-blush);
  top: -10%;
  right: -5%;
  animation-delay: 0s;
}

.hero-shape:nth-child(2) {
  width: 400px;
  height: 400px;
  background: var(--color-lavender);
  bottom: -10%;
  left: -5%;
  animation-delay: 5s;
}

.hero-shape:nth-child(3) {
  width: 350px;
  height: 350px;
  background: var(--color-teal);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 10s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.1); }
  66% { transform: translate(-30px, 30px) scale(0.9); }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero h1 {
  margin-bottom: var(--space-md);
  opacity: 0;
  animation: fadeInUp 1s var(--transition-luxury) forwards;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: var(--space-md);
  opacity: 0;
  animation: fadeInUp 1s var(--transition-luxury) 0.2s forwards;
}

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

/* Luxury Hero Styles */
.hero-luxury {
  background: linear-gradient(135deg, rgba(247, 202, 201, 0.1) 0%, rgba(200, 162, 200, 0.1) 50%, rgba(58, 175, 169, 0.1) 100%);
  position: relative;
}

.hero-luxury-compact {
  min-height: 70vh;
}

.hero-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, rgba(107, 45, 92, 0.05) 50%, rgba(58, 175, 169, 0.1) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(107, 45, 92, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(58, 175, 169, 0.03) 0%, transparent 50%);
  z-index: 1;
  pointer-events: none;
  opacity: 0.6;
}

.hero-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.hero-line {
  position: absolute;
  background: linear-gradient(90deg, transparent, rgba(107, 45, 92, 0.1), transparent);
  height: 1px;
  animation: lineMove 15s ease-in-out infinite;
}

.hero-line-1 {
  width: 40%;
  top: 20%;
  left: -10%;
  animation-delay: 0s;
}

.hero-line-2 {
  width: 35%;
  bottom: 25%;
  right: -10%;
  animation-delay: 5s;
}

@keyframes lineMove {
  0%, 100% {
    transform: translateX(0);
    opacity: 0.3;
  }
  50% {
    transform: translateX(100px);
    opacity: 0.6;
  }
}

.hero-accent {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-plum);
  opacity: 0.4;
  animation: accentPulse 3s ease-in-out infinite;
}

.hero-accent-1 {
  top: 15%;
  right: 15%;
  animation-delay: 0s;
}

.hero-accent-2 {
  bottom: 20%;
  left: 12%;
  animation-delay: 1.5s;
}

@keyframes accentPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.4;
  }
  50% {
    transform: scale(1.5);
    opacity: 0.7;
  }
}

.hero-shape-1 {
  background: linear-gradient(135deg, var(--color-blush), var(--color-lavender));
  width: 600px;
  height: 600px;
  top: -15%;
  right: -8%;
  filter: blur(100px);
  opacity: 0.4;
}

.hero-shape-2 {
  background: linear-gradient(135deg, var(--color-lavender), var(--color-teal));
  width: 500px;
  height: 500px;
  bottom: -12%;
  left: -8%;
  filter: blur(90px);
  opacity: 0.35;
}

.hero-shape-3 {
  background: linear-gradient(135deg, var(--color-teal), var(--color-blush));
  width: 450px;
  height: 450px;
  top: 45%;
  left: 45%;
  filter: blur(85px);
  opacity: 0.3;
}

.hero-content-luxury {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  margin-bottom: var(--space-md);
  opacity: 0;
  animation: fadeInUp 1s var(--transition-luxury) 0.1s forwards;
}

.hero-badge-text {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(107, 45, 92, 0.2);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-plum);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(107, 45, 92, 0.1);
}

.hero-title-luxury {
  margin-bottom: var(--space-md);
  line-height: 1.1;
}

.hero-title-line {
  display: block;
  opacity: 0;
  animation: fadeInUp 1s var(--transition-luxury) forwards;
}

.hero-title-line:first-child {
  animation-delay: 0.3s;
}

.hero-title-line.hero-title-accent {
  background: linear-gradient(135deg, var(--color-plum), var(--color-teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation-delay: 0.5s;
  position: relative;
}

.hero-title-line.hero-title-accent::after {
  content: '';
  position: absolute;
  bottom: 0.2em;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--color-plum), var(--color-teal));
  opacity: 0.3;
  transform: scaleX(0);
  animation: underlineExpand 1s var(--transition-luxury) 1s forwards;
}

@keyframes underlineExpand {
  to {
    transform: scaleX(1);
  }
}

.hero-description-luxury {
  font-size: 1.15rem;
  line-height: 1.8;
  color: rgba(42, 42, 42, 0.85);
  margin-bottom: var(--space-lg);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  animation: fadeInUp 1s var(--transition-luxury) 0.7s forwards;
}

.hero-actions {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-xl);
  opacity: 0;
  animation: fadeInUp 1s var(--transition-luxury) 0.9s forwards;
}

.btn-luxury {
  position: relative;
  overflow: hidden;
  padding: 1rem 2.5rem;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: all var(--transition-smooth);
}

.btn-luxury i {
  transition: transform var(--transition-fast);
}

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

.btn-luxury-outline {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  color: var(--color-plum);
  border: 2px solid rgba(107, 45, 92, 0.2);
  padding: 1rem 2.5rem;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
}

.btn-luxury-outline:hover {
  background: rgba(107, 45, 92, 0.05);
  border-color: var(--color-plum);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(107, 45, 92, 0.15);
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: var(--space-xl);
  flex-wrap: wrap;
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(107, 45, 92, 0.1);
  opacity: 0;
  animation: fadeInUp 1s var(--transition-luxury) 1.1s forwards;
}

.hero-stat {
  text-align: center;
}

.hero-stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--color-plum), var(--color-teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.hero-stat-label {
  font-size: 0.85rem;
  color: rgba(42, 42, 42, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

.hero-features {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
  margin-top: var(--space-md);
  opacity: 0;
  animation: fadeInUp 1s var(--transition-luxury) 0.9s forwards;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: rgba(42, 42, 42, 0.8);
}

.hero-feature i {
  color: var(--color-teal);
  font-size: 1rem;
}

.hero-tags {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-top: var(--space-md);
  opacity: 0;
  animation: fadeInUp 1s var(--transition-luxury) 0.9s forwards;
}

.hero-tag {
  padding: 0.4rem 1rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(107, 45, 92, 0.15);
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--color-plum);
  font-weight: 500;
  transition: all var(--transition-fast);
}

.hero-tag:hover {
  background: var(--color-plum);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(107, 45, 92, 0.2);
}

.hero-contact-preview {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-top: var(--space-md);
  opacity: 0;
  animation: fadeInUp 1s var(--transition-luxury) 0.9s forwards;
}

.hero-contact-item {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  font-size: 0.9rem;
  color: var(--color-dark);
  border: 1px solid rgba(107, 45, 92, 0.1);
  transition: all var(--transition-fast);
  justify-content: center;
}

.hero-contact-item:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(107, 45, 92, 0.1);
}

.hero-contact-item i {
  color: var(--color-plum);
  font-size: 1rem;
}

.btn {
  display: inline-block;
  padding: 0.9rem 2rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: var(--radius-lg);
  cursor: pointer;
  border: none;
  transition: all var(--transition-smooth);
  letter-spacing: 0.03em;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  transform: translate(-50%, -50%);
  transition: width var(--transition-smooth), height var(--transition-smooth);
}

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

.btn-primary {
  background: var(--color-plum);
  color: var(--color-white);
  box-shadow: var(--shadow-md);
}

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

.btn-secondary {
  background: var(--color-champagne);
  color: var(--color-plum);
}

.btn-secondary:hover {
  background: var(--color-lavender);
  transform: translateY(-2px);
}

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

.section-title {
  text-align: center;
  margin-bottom: var(--space-lg);
  opacity: 0;
  transform: translateY(30px);
  transition: all var(--transition-luxury);
}

.section-title.visible {
  opacity: 1;
  transform: translateY(0);
}

.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: var(--color-white);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
  opacity: 0;
  transform: translateY(30px);
}

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

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

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

.card h3 {
  color: var(--color-plum);
  margin-bottom: var(--space-xs);
}

.card p {
  font-size: 0.9rem;
  color: var(--color-dark);
}

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

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

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

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

.overlap-card {
  position: relative;
  margin-top: var(--space-lg);
}

.overlap-card::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  background: var(--color-lavender);
  border-radius: var(--radius-md);
  z-index: -1;
  opacity: 0.3;
}

.product-card {
  background: linear-gradient(135deg, var(--color-champagne) 0%, var(--color-white) 100%);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  text-align: center;
  transition: all var(--transition-smooth);
  border: 1px solid rgba(107, 45, 92, 0.1);
}

.product-card:hover {
  transform: translateY(-10px) rotate(1deg);
  box-shadow: var(--shadow-lg);
}

.product-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-sm);
}

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

.form-container {
  max-width: 600px;
  margin: 0 auto;
  background: var(--color-champagne);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

.form-group label {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 500;
  color: var(--color-plum);
  font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  background: var(--color-white);
  transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-teal);
  box-shadow: 0 0 0 3px rgba(58, 175, 169, 0.1);
}

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

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

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-top: 4px;
}

.checkbox-group label {
  font-size: 0.85rem;
  margin: 0;
}

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

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

.footer {
  background: var(--color-plum);
  color: var(--color-white);
  padding: var(--space-md) 0;
  text-align: center;
  font-size: 0.85rem;
}

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

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

.cookie-popup {
  position: fixed;
  bottom: -100%;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 500px;
  background: var(--color-white);
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  z-index: 10000;
  transition: bottom var(--transition-smooth);
}

.cookie-popup.show {
  bottom: var(--space-md);
}

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

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

.cookie-buttons button {
  padding: 0.6rem 1.2rem;
  font-size: 0.85rem;
}

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

.thank-you-content {
  max-width: 600px;
}

.thank-you-icon {
  font-size: 4rem;
  color: var(--color-teal);
  margin-bottom: var(--space-md);
  animation: scaleIn 0.6s var(--transition-luxury);
}

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

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

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

@media (min-width: 768px) {
  .asymmetric-section {
    grid-template-columns: 1fr 1fr;
  }
  
  .nav {
    gap: var(--space-lg);
  }
}

@media (max-width: 767px) {
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: var(--color-white);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: var(--shadow-lg);
    transition: right var(--transition-smooth);
    z-index: 999;
  }
  
  .nav.active {
    right: 0;
  }
  
  .nav a {
    font-size: 1.2rem;
  }
  
  .burger {
    display: flex;
  }
  
  .hero {
    padding: var(--space-lg) 0;
  }
  
  .hero-luxury-compact {
    min-height: 60vh;
  }
  
  .hero-title-luxury {
    font-size: clamp(2rem, 6vw, 3.5rem);
  }
  
  .hero-description-luxury {
    font-size: 1rem;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  
  .btn-luxury,
  .btn-luxury-outline {
    width: 100%;
    justify-content: center;
  }
  
  .hero-stats {
    gap: var(--space-md);
  }
  
  .hero-stat-number {
    font-size: 2rem;
  }
  
  .hero-features {
    flex-direction: column;
    gap: var(--space-sm);
  }
  
  .hero-contact-preview {
    width: 100%;
  }
  
  .hero-contact-item {
    font-size: 0.85rem;
    padding: 0.6rem 1.2rem;
  }
  
  .hero-shape-1,
  .hero-shape-2,
  .hero-shape-3 {
    filter: blur(60px);
  }
  
  .section {
    padding: var(--space-lg) 0;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  .card-img,
  .product-img {
    height: 200px;
  }
}

@media (max-width: 480px) {
  :root {
    --space-lg: 2rem;
    --space-xl: 3rem;
  }
  
  .container {
    width: 95%;
  }
  
  .form-container {
    padding: var(--space-md);
  }
  
  .btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 375px) {
  html {
    font-size: 95%;
  }
  
  .container {
    width: 92%;
    padding: 0 0.5rem;
  }
  
  .logo {
    font-size: 1.5rem;
  }
  
  .nav a {
    font-size: 1.1rem;
  }
  
  .btn {
    padding: 0.75rem 1.2rem;
    font-size: 0.8rem;
  }
  
  .card {
    padding: 1.2rem;
  }
  
  .form-container {
    padding: 1.2rem;
  }
  
  .grid {
    gap: 1.2rem;
  }
}

@media (max-width: 320px) {
  :root {
    --space-xs: 0.4rem;
    --space-sm: 0.8rem;
    --space-md: 1.2rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
  }
  
  html {
    font-size: 87.5%;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
  }
  
  body {
    font-size: 0.875rem;
    line-height: 1.5;
  }
  
  .container {
    width: 92%;
    max-width: 100%;
    padding: 0 0.75rem;
  }
  
  .header {
    padding: 0.6rem 0;
  }
  
  .header-content {
    gap: 0.5rem;
  }
  
  .logo {
    font-size: 1.15rem;
    letter-spacing: 0.01em;
    line-height: 1.2;
    word-break: break-word;
  }
  
  .burger {
    padding: 0.25rem;
    gap: 4px;
    min-width: 28px;
  }
  
  .burger span {
    width: 22px;
    height: 2px;
  }
  
  .nav {
    width: 85%;
    padding: 2rem 1rem;
  }
  
  .nav a {
    font-size: 1rem;
    padding: 0.75rem 0;
    width: 100%;
    text-align: center;
  }
  
  .hero {
    padding: 1.5rem 0;
    min-height: 75vh;
  }
  
  .hero-luxury-compact {
    min-height: 45vh;
    padding: 1.5rem 0;
  }
  
  .hero-bg {
    overflow: hidden;
  }
  
  .hero-shape-1,
  .hero-shape-2,
  .hero-shape-3 {
    filter: blur(50px);
    opacity: 0.2;
  }
  
  .hero-shape-1 {
    width: 250px;
    height: 250px;
  }
  
  .hero-shape-2 {
    width: 200px;
    height: 200px;
  }
  
  .hero-shape-3 {
    width: 180px;
    height: 180px;
  }
  
  .hero-content-luxury {
    padding: 0 0.5rem;
  }
  
  .hero-badge {
    margin-bottom: 0.75rem;
  }
  
  .hero-badge-text {
    font-size: 0.7rem;
    padding: 0.35rem 0.9rem;
    letter-spacing: 0.08em;
    line-height: 1.3;
  }
  
  .hero-title-luxury {
    font-size: 1.65rem;
    line-height: 1.15;
    margin-bottom: 0.75rem;
  }
  
  .hero-title-line {
    display: block;
    margin-bottom: 0.25rem;
  }
  
  .hero-title-line.hero-title-accent::after {
    height: 2px;
    bottom: 0.15em;
  }
  
  .hero-description-luxury {
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    padding: 0 0.25rem;
  }
  
  .hero-actions {
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 1.25rem;
    width: 100%;
  }
  
  .btn-luxury,
  .btn-luxury-outline {
    width: 100%;
    padding: 0.85rem 1.5rem;
    font-size: 0.85rem;
    justify-content: center;
    gap: 0.5rem;
  }
  
  .btn-luxury i {
    font-size: 0.8rem;
  }
  
  .hero-stats {
    gap: 0.75rem;
    flex-direction: column;
    padding-top: 1rem;
    margin-top: 1rem;
  }
  
  .hero-stat {
    width: 100%;
    padding: 0.5rem 0;
  }
  
  .hero-stat-number {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
  }
  
  .hero-stat-label {
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    line-height: 1.3;
  }
  
  .hero-features {
    flex-direction: column;
    gap: 0.6rem;
    align-items: flex-start;
    margin-top: 0.75rem;
  }
  
  .hero-feature {
    font-size: 0.8rem;
    gap: 0.4rem;
    width: 100%;
  }
  
  .hero-feature i {
    font-size: 0.9rem;
    flex-shrink: 0;
  }
  
  .hero-tags {
    gap: 0.4rem;
    margin-top: 0.75rem;
    justify-content: flex-start;
  }
  
  .hero-tag {
    font-size: 0.7rem;
    padding: 0.25rem 0.7rem;
    line-height: 1.4;
  }
  
  .hero-contact-preview {
    gap: 0.6rem;
    margin-top: 0.75rem;
    width: 100%;
  }
  
  .hero-contact-item {
    font-size: 0.75rem;
    padding: 0.5rem 0.9rem;
    flex-wrap: wrap;
    text-align: center;
    gap: 0.4rem;
    line-height: 1.4;
  }
  
  .hero-contact-item i {
    font-size: 0.85rem;
    flex-shrink: 0;
  }
  
  .hero-contact-item span {
    word-break: break-word;
    flex: 1;
    min-width: 0;
  }
  
  .section {
    padding: 1.75rem 0;
  }
  
  .section-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding: 0 0.5rem;
  }
  
  h1 {
    font-size: 1.85rem;
    line-height: 1.15;
    margin-bottom: 0.75rem;
  }
  
  h2 {
    font-size: 1.5rem;
    line-height: 1.2;
    margin-bottom: 0.75rem;
  }
  
  h3 {
    font-size: 1.2rem;
    line-height: 1.25;
    margin-bottom: 0.5rem;
  }
  
  h4 {
    font-size: 1rem;
    line-height: 1.3;
    margin-bottom: 0.5rem;
  }
  
  p {
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 0.75rem;
  }
  
  .btn {
    padding: 0.7rem 1.2rem;
    font-size: 0.8rem;
    width: 100%;
    max-width: 100%;
    border-radius: var(--radius-md);
    letter-spacing: 0.02em;
  }
  
  .btn-primary,
  .btn-secondary {
    display: block;
    text-align: center;
  }
  
  .card {
    padding: 0.9rem;
    border-radius: var(--radius-sm);
  }
  
  .card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }
  
  .card p {
    font-size: 0.8rem;
    line-height: 1.5;
  }
  
  .card-img,
  .product-img {
    height: 160px;
    border-radius: var(--radius-sm);
  }
  
  .product-card {
    padding: 0.9rem;
  }
  
  .product-card h3 {
    font-size: 1.1rem;
  }
  
  .price {
    font-size: 1.5rem;
    margin: 0.5rem 0;
  }
  
  .grid {
    gap: 0.9rem;
    grid-template-columns: 1fr;
  }
  
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }
  
  .asymmetric-section {
    gap: 1.25rem;
  }
  
  .asymmetric-visual {
    transform: rotate(0deg);
  }
  
  .asymmetric-visual:hover {
    transform: scale(1.01);
  }
  
  .overlap-card::before {
    top: -10px;
    left: -10px;
  }
  
  .form-container {
    padding: 0.9rem;
    border-radius: var(--radius-md);
  }
  
  .form-group {
    margin-bottom: 0.9rem;
  }
  
  .form-group label {
    font-size: 0.8rem;
    margin-bottom: 0.4rem;
  }
  
  .form-group input,
  .form-group textarea {
    padding: 0.65rem;
    font-size: 0.85rem;
    border-radius: var(--radius-sm);
  }
  
  .form-group textarea {
    min-height: 100px;
    resize: vertical;
  }
  
  .checkbox-group {
    gap: 0.4rem;
    margin-bottom: 0.9rem;
    align-items: flex-start;
  }
  
  .checkbox-group label {
    font-size: 0.75rem;
    line-height: 1.4;
  }
  
  .checkbox-group input[type="checkbox"] {
    margin-top: 2px;
    flex-shrink: 0;
  }
  
  .map-container {
    height: 250px;
    border-radius: var(--radius-sm);
    margin: 0.75rem 0;
  }
  
  .footer {
    font-size: 0.7rem;
    padding: 1rem 0;
    line-height: 1.6;
  }
  
  .footer p {
    margin-bottom: 0.5rem;
    font-size: 0.7rem;
  }
  
  .footer a {
    font-size: 0.7rem;
    margin: 0 0.3rem;
    display: inline-block;
    word-break: break-word;
  }
  
  .cookie-popup {
    width: 96%;
    max-width: 100%;
    padding: 1rem;
    left: 2%;
    transform: translateX(0);
    border-radius: var(--radius-md);
    bottom: -100%;
  }
  
  .cookie-popup.show {
    bottom: 0.5rem;
  }
  
  .cookie-popup p {
    font-size: 0.75rem;
    line-height: 1.5;
    margin-bottom: 0.75rem;
  }
  
  .cookie-buttons {
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
  }
  
  .cookie-buttons button {
    padding: 0.6rem 1rem;
    font-size: 0.75rem;
    width: 100%;
  }
  
  .thank-you-container {
    min-height: 70vh;
    padding: 1.5rem 0;
  }
  
  .thank-you-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
  }
  
  .error-container {
    min-height: 70vh;
    padding: 1.5rem 0;
  }
  
  .error-code {
    font-size: 5rem;
    margin-bottom: 0.75rem;
  }
  
  .hero-line-1,
  .hero-line-2 {
    display: none;
  }
  
  .hero-accent {
    width: 6px;
    height: 6px;
  }
  
  .hero-pattern {
    opacity: 0.3;
  }
  
  .hero-gradient-overlay {
    opacity: 0.8;
  }
}
