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

:root {
  --color-primary: #2D0909;
  --color-bg: #FFFDF9;
  --color-accent: #A68A56;
  --color-text: #1A1A1A;
  --color-gold: #C5A021;
  
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Montserrat', sans-serif;
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  
  --shadow-sm: 0 2px 8px rgba(29, 9, 9, 0.08);
  --shadow-md: 0 4px 16px rgba(29, 9, 9, 0.12);
  --shadow-lg: 0 8px 32px rgba(29, 9, 9, 0.16);
  
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-luxury: 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}

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

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-accent);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

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

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

h4 {
  font-size: clamp(1.25rem, 2.5vw, 2rem);
}

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

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

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

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

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 253, 249, 0.95);
  backdrop-filter: blur(12px);
  transform: translateY(0);
  transition: transform var(--transition-base), background var(--transition-base);
}

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

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

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

.logo:hover {
  color: var(--color-accent);
}

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

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

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

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

.burger {
  display: none;
  flex-direction: column;
  gap: 0.375rem;
  cursor: pointer;
  z-index: 1001;
}

.burger span {
  width: 1.75rem;
  height: 2px;
  background: var(--color-primary);
  transition: all var(--transition-base);
}

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

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

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

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: var(--space-xl) 0;
  margin-top: 4rem;
  background: linear-gradient(135deg, rgba(255, 253, 249, 0.98) 0%, rgba(255, 253, 249, 1) 50%, rgba(45, 9, 9, 0.02) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(197, 160, 33, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: luxuryFloat 20s ease-in-out infinite;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(166, 138, 86, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  animation: luxuryFloat 25s ease-in-out infinite reverse;
  z-index: 0;
}

@keyframes luxuryFloat {
  0%, 100% { 
    transform: translate(0, 0) scale(1);
    opacity: 0.8;
  }
  50% { 
    transform: translate(-3rem, 3rem) scale(1.1);
    opacity: 1;
  }
}

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

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
  padding: var(--space-md);
}

.hero-decorative-line {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1px;
  height: 200px;
  background: linear-gradient(180deg, transparent, var(--color-gold), transparent);
  opacity: 0.3;
  z-index: 1;
  animation: lineExpand 2s ease-out forwards;
}

.hero-decorative-line::before,
.hero-decorative-line::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  background: var(--color-gold);
  border-radius: 50%;
  opacity: 0.5;
}

.hero-decorative-line::before {
  top: 0;
  animation: dotPulse 2s ease-in-out infinite;
}

.hero-decorative-line::after {
  bottom: 0;
  animation: dotPulse 2s ease-in-out infinite 0.5s;
}

@keyframes lineExpand {
  from {
    height: 0;
    opacity: 0;
  }
  to {
    height: 200px;
    opacity: 0.3;
  }
}

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

.hero h1 {
  margin-bottom: var(--space-md);
  transform: translateY(3rem);
  opacity: 0;
  animation: luxuryFadeInUp 1.2s cubic-bezier(0.19, 1, 0.22, 1) 0.3s forwards;
  position: relative;
  font-weight: 700;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 50%, var(--color-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: luxuryFadeInUp 1.2s cubic-bezier(0.19, 1, 0.22, 1) 0.3s forwards, gradientShift 8s ease infinite;
}

.hero h1::after {
  content: '';
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  opacity: 0;
  animation: underlineReveal 1s ease-out 1.5s forwards;
}

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

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

.hero p {
  font-size: 1.25rem;
  margin-bottom: var(--space-lg);
  transform: translateY(3rem);
  opacity: 0;
  animation: luxuryFadeInUp 1.2s cubic-bezier(0.19, 1, 0.22, 1) 0.6s forwards;
  color: rgba(26, 26, 26, 0.8);
  line-height: 1.8;
  font-weight: 300;
  letter-spacing: 0.02em;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero .btn {
  transform: translateY(3rem);
  opacity: 0;
  animation: luxuryFadeInUp 1.2s cubic-bezier(0.19, 1, 0.22, 1) 0.9s forwards;
  position: relative;
  overflow: visible;
  margin-top: var(--space-md);
}

.hero .btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  border: 1px solid var(--color-gold);
  border-radius: var(--radius-lg);
  opacity: 0;
  transition: opacity var(--transition-base), transform var(--transition-base);
}

.hero .btn:hover::after {
  opacity: 0.5;
  transform: translate(-50%, -50%) scale(1.05);
}

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

.hero-luxury-accent {
  position: absolute;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(197, 160, 33, 0.1);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.hero-luxury-accent.top-left {
  top: 10%;
  left: 5%;
  animation: rotateSlow 30s linear infinite;
}

.hero-luxury-accent.bottom-right {
  bottom: 10%;
  right: 5%;
  animation: rotateSlow 25s linear infinite reverse;
}

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

.hero-luxury-accent::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  border: 1px solid rgba(166, 138, 86, 0.08);
  border-radius: 50%;
}

.hero-luxury-accent::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  border: 1px solid rgba(197, 160, 33, 0.15);
  border-radius: 50%;
}

.btn {
  display: inline-block;
  padding: 0.875rem 2.5rem;
  background: var(--color-gold);
  color: var(--color-bg);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: none;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

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

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

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

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

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

.section-title {
  text-align: center;
  margin-bottom: var(--space-lg);
  transform: translateY(2rem);
  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(260px, 1fr));
}

.card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  transform: translateY(2rem);
}

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

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

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

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

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

.card-title {
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
  color: var(--color-primary);
}

.card-text {
  font-size: 0.875rem;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

.asymmetric-layout {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--space-md);
  margin: var(--space-lg) 0;
}

.asymmetric-item {
  position: relative;
}

.asymmetric-item:nth-child(1) {
  grid-column: 1 / 7;
  grid-row: 1 / 3;
  transform: rotate(-2deg);
}

.asymmetric-item:nth-child(2) {
  grid-column: 7 / 13;
  grid-row: 1 / 2;
  transform: translateY(3rem);
}

.asymmetric-item:nth-child(3) {
  grid-column: 7 / 13;
  grid-row: 2 / 4;
  transform: rotate(1deg);
}

.asymmetric-item:nth-child(4) {
  grid-column: 1 / 7;
  grid-row: 3 / 4;
  transform: translateY(-2rem);
}

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

.overlap-bg {
  position: absolute;
  top: 10%;
  right: 5%;
  width: 40%;
  height: 80%;
  background: var(--color-primary);
  opacity: 0.05;
  border-radius: var(--radius-lg);
  transform: rotate(5deg);
}

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

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

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.875rem var(--space-sm);
  border: 2px solid rgba(166, 138, 86, 0.2);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  background: #fff;
  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(197, 160, 33, 0.1);
}

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

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

.checkbox-wrapper input[type="checkbox"] {
  margin-top: 0.25rem;
  cursor: pointer;
}

.checkbox-wrapper label {
  font-size: 0.8125rem;
  cursor: pointer;
}

.contact-section {
  background: linear-gradient(135deg, rgba(45, 9, 9, 0.03) 0%, rgba(166, 138, 86, 0.05) 100%);
  padding: var(--space-xl) 0;
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(197, 160, 33, 0.08) 0%, transparent 70%);
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(-2rem, 2rem) rotate(5deg); }
}

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

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

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  padding: var(--space-sm);
  background: rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-md);
  backdrop-filter: blur(8px);
  transition: all var(--transition-base);
}

.contact-item:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateX(0.5rem);
}

.contact-item i {
  color: var(--color-gold);
  font-size: 1.5rem;
  margin-top: 0.25rem;
}

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

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

.footer {
  background: var(--color-primary);
  color: var(--color-bg);
  padding: var(--space-md) 0;
  text-align: center;
  font-size: 0.8125rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

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

.footer-links a {
  opacity: 0.8;
  transition: opacity var(--transition-base);
}

.footer-links a:hover {
  opacity: 1;
}

.cookie-popup {
  position: fixed;
  bottom: -100%;
  left: 0;
  right: 0;
  background: rgba(45, 9, 9, 0.98);
  color: var(--color-bg);
  padding: var(--space-md);
  z-index: 2000;
  transition: bottom var(--transition-slow);
  backdrop-filter: blur(12px);
}

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

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

.cookie-text {
  flex: 1;
  font-size: 0.875rem;
}

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

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

.product-card {
  text-align: center;
}

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

.thank-you-content {
  max-width: 600px;
  padding: var(--space-lg);
}

.thank-you-content i {
  font-size: 5rem;
  color: var(--color-gold);
  margin-bottom: var(--space-md);
  animation: scaleIn var(--transition-luxury);
}

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

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

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

.policy-content {
  max-width: 900px;
  margin: 30px auto;
  padding: var(--space-xl) var(--space-md);
}

.policy-content h2 {
  margin-top: var(--space-lg);
  margin-bottom: var(--space-md);
}

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

.policy-content ul {
  padding-left: var(--space-md);
}

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

@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: rgba(255, 253, 249, 0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right var(--transition-base);
    box-shadow: var(--shadow-lg);
  }

  .nav.active {
    right: 0;
  }

  .burger {
    display: flex;
  }

  .hero-luxury-accent {
    width: 200px;
    height: 200px;
  }

  .hero-luxury-accent::before {
    width: 130px;
    height: 130px;
  }

  .hero-luxury-accent::after {
    width: 65px;
    height: 65px;
  }

  .hero-decorative-line {
    height: 150px;
  }

  .hero h1 {
    font-size: clamp(2rem, 6vw, 3.5rem);
  }

  .hero p {
    font-size: 1.125rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .asymmetric-item {
    transform: none !important;
  }

  .asymmetric-item:nth-child(1),
  .asymmetric-item:nth-child(2),
  .asymmetric-item:nth-child(3),
  .asymmetric-item:nth-child(4) {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  :root {
    --space-lg: 3rem;
    --space-xl: 4rem;
  }

  .hero {
    margin-top: 3rem;
    padding: var(--space-lg) 0;
  }

  .hero-luxury-accent {
    width: 150px;
    height: 150px;
    opacity: 0.5;
  }

  .hero-luxury-accent::before {
    width: 100px;
    height: 100px;
  }

  .hero-luxury-accent::after {
    width: 50px;
    height: 50px;
  }

  .hero-decorative-line {
    height: 100px;
  }

  .hero h1::after {
    width: 60px;
  }

  .btn {
    padding: 0.75rem 2rem;
    font-size: 0.8125rem;
  }
}

.luxury-card {
  background: linear-gradient(135deg, rgba(255, 253, 249, 0.95) 0%, rgba(255, 253, 249, 1) 100%);
  border: 1px solid rgba(166, 138, 86, 0.15);
  backdrop-filter: blur(20px);
}

.luxury-title {
  position: relative;
  display: inline-block;
}

.luxury-title::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.policy-content {
  background: linear-gradient(135deg, rgba(255, 253, 249, 0.98) 0%, rgba(255, 253, 249, 1) 100%);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  margin-top: 100px;
}

.policy-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-gold), var(--color-accent));
}

.thank-you-content,
.error-content {
  background: linear-gradient(135deg, rgba(255, 253, 249, 0.95) 0%, rgba(255, 253, 249, 1) 100%);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(166, 138, 86, 0.2);
}

@media (max-width: 320px) {
  /* Base typography adjustments */
  html {
    font-size: 87.5%;
  }

  body {
    font-size: 0.875rem;
    line-height: 1.5;
  }

  /* Header optimizations */
  .header {
    padding: 0;
  }

  .header-inner {
    padding: 0.5rem 0.75rem;
    flex-wrap: wrap;
  }

  .logo {
    font-size: 1.25rem;
    letter-spacing: 0.03em;
  }

  .nav {
    width: 85%;
    padding: 2rem 1rem;
  }

  .nav a {
    font-size: 0.8125rem;
    padding: 0.75rem 0;
  }

  .burger {
    gap: 0.25rem;
  }

  .burger span {
    width: 1.5rem;
    height: 2px;
  }

  /* Typography scaling */
  h1 {
    font-size: 1.75rem;
    line-height: 1.15;
    letter-spacing: -0.01em;
  }

  h2 {
    font-size: 1.375rem;
    line-height: 1.2;
  }

  h3 {
    font-size: 1.125rem;
  }

  h4 {
    font-size: 1rem;
  }

  p {
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
  }

  /* Hero section optimizations */
  .hero {
    margin-top: 3rem;
    padding: 1.5rem 0;
    min-height: 85vh;
  }

  .hero::before,
  .hero::after {
    width: 200px;
    height: 200px;
    opacity: 0.3;
  }

  .hero-luxury-accent {
    width: 120px;
    height: 120px;
    opacity: 0.3;
  }

  .hero-luxury-accent.top-left {
    top: 5%;
    left: 2%;
  }

  .hero-luxury-accent.bottom-right {
    bottom: 5%;
    right: 2%;
  }

  .hero-luxury-accent::before {
    width: 80px;
    height: 80px;
  }

  .hero-luxury-accent::after {
    width: 40px;
    height: 40px;
  }

  .hero-decorative-line {
    height: 80px;
    opacity: 0.2;
  }

  .hero-content {
    padding: 1rem 0.75rem;
    max-width: 100%;
  }

  .hero h1 {
    margin-bottom: 0.75rem;
    font-size: 1.625rem;
    line-height: 1.2;
  }

  .hero h1::after {
    width: 50px;
    height: 2px;
  }

  .hero p {
    font-size: 0.9375rem;
    margin-bottom: 1.25rem;
    line-height: 1.6;
    padding: 0 0.5rem;
  }

  .hero-canvas {
    opacity: 0.2;
  }

  /* Button optimizations */
  .btn {
    padding: 0.625rem 1.5rem;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    width: auto;
    max-width: 100%;
    white-space: nowrap;
  }

  .btn::after {
    width: calc(100% + 10px);
    height: calc(100% + 10px);
  }

  /* Container and spacing */
  .container {
    width: 95%;
    padding: 0 0.75rem;
  }

  .section {
    padding: 2rem 0;
  }

  .section-title {
    margin-bottom: 1.5rem;
    padding: 0 0.5rem;
  }

  /* Grid optimizations */
  .grid {
    gap: 0.875rem;
  }

  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  /* Card optimizations */
  .card {
    margin-bottom: 0.875rem;
  }

  .card-img {
    height: 200px;
  }

  .card-content {
    padding: 0.875rem;
  }

  .card-title {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
  }

  .card-text {
    font-size: 0.8125rem;
    line-height: 1.5;
  }

  /* Asymmetric layout */
  .asymmetric-layout {
    grid-template-columns: 1fr;
    gap: 0.875rem;
  }

  .asymmetric-item {
    grid-column: 1 / -1 !important;
    grid-row: auto !important;
    transform: none !important;
  }

  /* Overlap section */
  .overlap-section {
    margin: 1.5rem 0;
  }

  .overlap-bg {
    display: none;
  }

  /* Contact section */
  .contact-section {
    padding: 2rem 0;
  }

  .contact-section::before {
    width: 100%;
    height: 150%;
    top: -25%;
    right: -50%;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .contact-info {
    padding: 0;
  }

  .contact-item {
    padding: 0.75rem;
    margin-bottom: 0.75rem;
  }

  .contact-item i {
    font-size: 1.25rem;
  }

  .contact-item h4 {
    font-size: 0.875rem;
  }

  .contact-item p {
    font-size: 0.8125rem;
  }

  .map-container {
    height: 250px;
    margin-top: 1rem;
  }

  /* Form optimizations */
  .form-group {
    margin-bottom: 1rem;
  }

  .form-label {
    font-size: 0.8125rem;
    margin-bottom: 0.375rem;
  }

  .form-input,
  .form-textarea {
    padding: 0.625rem 0.75rem;
    font-size: 0.875rem;
    border-width: 1.5px;
  }

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

  .checkbox-wrapper {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .checkbox-wrapper label {
    font-size: 0.75rem;
    line-height: 1.4;
  }

  /* Footer */
  .footer {
    padding: 1.5rem 0;
    font-size: 0.75rem;
  }

  .footer-content {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }

  .footer-links {
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
  }

  .footer-links a {
    font-size: 0.75rem;
  }

  /* Cookie popup */
  .cookie-popup {
    padding: 1rem 0.75rem;
  }

  .cookie-content {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .cookie-text {
    font-size: 0.8125rem;
  }

  .cookie-buttons {
    flex-direction: column;
    width: 100%;
    gap: 0.5rem;
  }

  .cookie-buttons .btn {
    width: 100%;
  }

  /* Price display */
  .price {
    font-size: 1.5rem;
    margin: 0.75rem 0;
  }

  /* Product card */
  .product-card {
    text-align: center;
  }

  /* Thank you and error sections */
  .thank-you-section,
  .error-section {
    min-height: 70vh;
    padding: 2rem 0.75rem;
  }

  .thank-you-content,
  .error-content {
    padding: 1.5rem 1rem;
    max-width: 100%;
  }

  .thank-you-content i {
    font-size: 3.5rem;
    margin-bottom: 1rem;
  }

  .error-content h1 {
    font-size: 4rem;
    margin-bottom: 0.75rem;
  }

  /* Policy content */
  .policy-content {
    padding: 1.5rem 0.75rem;
  }

  .policy-content h2 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
  }

  .policy-content p,
  .policy-content ul {
    font-size: 0.8125rem;
    margin-bottom: 0.75rem;
  }

  .policy-content ul {
    padding-left: 1.25rem;
  }

  .policy-content li {
    margin-bottom: 0.5rem;
    font-size: 0.8125rem;
  }

  /* Luxury elements */
  .luxury-title::after {
    width: 40px;
    height: 2px;
  }

  /* Smooth scrolling optimization */
  html {
    scroll-behavior: smooth;
  }

  /* Touch target optimization */
  .btn,
  .nav a,
  .footer-links a {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Prevent horizontal scroll */
  body {
    overflow-x: hidden;
    max-width: 100vw;
  }

  * {
    max-width: 100%;
  }
}
