:root {
  --color-bg-primary: #0F141A;
  --color-text-primary: #E5E7EB;
  --color-button: #2D3A3A;
  --color-accent: #B45309;
  --color-interactive: #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;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 2rem;
  --font-size-4xl: 2.5rem;
  --font-size-5xl: 3.5rem;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.5);
  --shadow-xl: 0 12px 24px rgba(0, 0, 0, 0.6);
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  --transition-smooth: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  line-height: 1.6;
  font-size: var(--font-size-base);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

h1 {
  font-size: var(--font-size-5xl);
}

h2 {
  font-size: var(--font-size-4xl);
}

h3 {
  font-size: var(--font-size-3xl);
}

h4 {
  font-size: var(--font-size-2xl);
}

h5 {
  font-size: var(--font-size-xl);
}

h6 {
  font-size: var(--font-size-lg);
}

a {
  color: var(--color-text-primary);
  text-decoration: none;
  transition: color var(--transition-base);
}

a:hover {
  color: var(--color-accent);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.header-wrapper {
  position: relative;
  z-index: 1000;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-lg) var(--space-xl);
  background: rgba(15, 20, 26, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(229, 231, 235, 0.1);
  transition: transform var(--transition-smooth), opacity var(--transition-smooth);
}

.header-container.hidden {
  transform: translateY(-100%);
  opacity: 0;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: var(--color-text-primary);
  letter-spacing: 0.05em;
}

.nav-menu {
  display: flex;
  gap: var(--space-xl);
  list-style: none;
  align-items: center;
}

.nav-link {
  font-size: var(--font-size-sm);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  position: relative;
  padding: var(--space-xs) 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-accent);
  transition: width var(--transition-base);
}

.nav-link:hover::after {
  width: 100%;
}

.burger-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-text-primary);
  font-size: var(--font-size-2xl);
  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-bg-primary) 0%, var(--color-interactive) 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;
  padding: var(--space-3xl) var(--space-md);
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-size: clamp(2.5rem, 8vw, 5rem);
  margin-bottom: var(--space-lg);
  transform: translateY(30px);
  animation: fadeInUp 1s ease forwards;
}

.hero-subtitle {
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-2xl);
  transform: translateY(30px);
  animation: fadeInUp 1s ease 0.3s forwards;
  color: rgba(229, 231, 235, 0.8);
}

.hero-button {
  display: inline-block;
  padding: var(--space-md) var(--space-2xl);
  background: var(--color-button);
  color: var(--color-text-primary);
  border-radius: var(--radius-lg);
  font-size: var(--font-size-base);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all var(--transition-smooth);
  border: 1px solid transparent;
  transform: translateY(30px);
  animation: fadeInUp 1s ease 0.6s forwards;
}

.hero-button:hover {
  background: var(--color-accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.section {
  padding: var(--space-3xl) 0;
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-3xl);
  transform: translateY(20px);
}

.section-title.visible {
  opacity: 1;
  transform: translateY(0);
  transition: all var(--transition-smooth);
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

.content-card {
  background: var(--color-interactive);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  transition: all var(--transition-smooth);
  border: 1px solid rgba(229, 231, 235, 0.1);
  transform: translateY(30px);
}

.content-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: all var(--transition-smooth);
}

.content-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: var(--color-accent);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-2xl);
  margin-top: var(--space-2xl);
}

.product-card {
  background: var(--color-interactive);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--transition-smooth);
  border: 1px solid rgba(229, 231, 235, 0.1);
  transform: scale(0.95);
}

.product-card.visible {
  opacity: 1;
  transform: scale(1);
  transition: all var(--transition-smooth);
}

.product-card:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.product-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  background: var(--color-button);
}

.product-info {
  padding: var(--space-xl);
}

.product-title {
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-sm);
  color: var(--color-text-primary);
}

.product-price {
  font-size: var(--font-size-2xl);
  color: var(--color-accent);
  font-weight: 700;
  margin-top: var(--space-md);
}

.asymmetric-layout {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
}

.asymmetric-item {
  padding: var(--space-2xl);
  background: var(--color-interactive);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(229, 231, 235, 0.1);
  transition: all var(--transition-smooth);
  transform: translateX(-50px);
}

.asymmetric-item:nth-child(even) {
  transform: translateX(50px);
  margin-left: auto;
  max-width: 85%;
}

.asymmetric-item.visible {
  opacity: 1;
  transform: translateX(0);
  transition: all var(--transition-smooth);
}

.asymmetric-item:hover {
  transform: translateX(10px) scale(1.02);
  box-shadow: var(--shadow-lg);
}

.asymmetric-item:nth-child(even):hover {
  transform: translateX(-10px) scale(1.02);
}

.contact-section {
  padding: var(--space-3xl) 0;
  background: linear-gradient(135deg, var(--color-interactive) 0%, var(--color-bg-primary) 100%);
}

.contact-container {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-2xl);
}

.contact-form {
  background: var(--color-interactive);
  padding: var(--space-2xl);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(229, 231, 235, 0.1);
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-label {
  display: block;
  margin-bottom: var(--space-sm);
  font-size: var(--font-size-sm);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(229, 231, 235, 0.8);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: var(--space-md);
  background: var(--color-bg-primary);
  border: 1px solid rgba(229, 231, 235, 0.2);
  border-radius: var(--radius-md);
  color: var(--color-text-primary);
  font-size: var(--font-size-base);
  font-family: inherit;
  transition: all var(--transition-base);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(180, 83, 9, 0.1);
}

.form-textarea {
  min-height: 150px;
  resize: vertical;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.checkbox-input {
  margin-top: 0.25rem;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.checkbox-label {
  font-size: var(--font-size-sm);
  line-height: 1.5;
}

.submit-button {
  width: 100%;
  padding: var(--space-md) var(--space-xl);
  background: var(--color-button);
  color: var(--color-text-primary);
  border: none;
  border-radius: var(--radius-lg);
  font-size: var(--font-size-base);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all var(--transition-smooth);
  margin-top: var(--space-lg);
}

.submit-button:hover {
  background: var(--color-accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.footer {
  padding: var(--space-xl) 0;
  text-align: center;
  border-top: 1px solid rgba(229, 231, 235, 0.1);
  font-size: var(--font-size-sm);
  color: rgba(229, 231, 235, 0.6);
}

.map-container {
  margin-top: var(--space-2xl);
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 450px;
  border: 1px solid rgba(229, 231, 235, 0.1);
  box-shadow: var(--shadow-lg);
  transition: box-shadow var(--transition-base);
}

.map-container:hover {
  box-shadow: var(--shadow-xl);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.popup-content {
  background: var(--color-interactive);
  padding: var(--space-2xl);
  border-radius: var(--radius-xl);
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  border: 1px solid rgba(229, 231, 235, 0.1);
  transform: scale(0.9);
  transition: transform var(--transition-base);
}

.popup-overlay.active .popup-content {
  transform: scale(1);
}

.popup-close {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  background: none;
  border: none;
  color: var(--color-text-primary);
  font-size: var(--font-size-2xl);
  cursor: pointer;
  padding: var(--space-xs);
  transition: color var(--transition-base);
}

.popup-close:hover {
  color: var(--color-accent);
}

.error-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-3xl);
}

.error-title {
  font-size: clamp(3rem, 10vw, 8rem);
  margin-bottom: var(--space-lg);
  color: var(--color-accent);
}

.error-message {
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-2xl);
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes floatSlow {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-30px) rotate(5deg);
  }
}

@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes textReveal {
  0% {
    clip-path: inset(0 100% 0 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}

@keyframes particleFloat {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translate(20px, -20px) scale(1.2);
    opacity: 1;
  }
}

@keyframes wave {
  0%, 100% {
    transform: translateX(0) translateY(0);
  }
  50% {
    transform: translateX(-25%) translateY(-10px);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}

.hero-luxury-1 {
  position: relative;
  overflow: hidden;
}

.geometric-shape {
  position: absolute;
  border: 2px solid rgba(180, 83, 9, 0.3);
  border-radius: 50%;
  animation: floatSlow 8s ease-in-out infinite;
}

.geometric-shape:nth-child(1) {
  width: 200px;
  height: 200px;
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.geometric-shape:nth-child(2) {
  width: 150px;
  height: 150px;
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.geometric-shape:nth-child(3) {
  width: 100px;
  height: 100px;
  bottom: 20%;
  left: 20%;
  animation-delay: 4s;
}

.hero-gradient-text {
  background: linear-gradient(135deg, #E5E7EB 0%, #B45309 50%, #E5E7EB 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 3s ease infinite;
}

.hero-text-reveal {
  clip-path: inset(0 100% 0 0);
  animation: textReveal 1.5s ease forwards;
}

.particle-burst {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #B45309;
  border-radius: 50%;
  animation: particleFloat 4s ease-in-out infinite;
}

.wave-background {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200%;
  height: 100px;
  background: linear-gradient(90deg, rgba(180, 83, 9, 0.1) 0%, rgba(180, 83, 9, 0.05) 50%, rgba(180, 83, 9, 0.1) 100%);
  animation: wave 10s ease-in-out infinite;
  border-radius: 50% 50% 0 0;
}

.wave-background::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(180, 83, 9, 0.05) 0%, rgba(180, 83, 9, 0.1) 50%, rgba(180, 83, 9, 0.05) 100%);
  animation: wave 8s ease-in-out infinite reverse;
  border-radius: 50% 50% 0 0;
}

.hero-shimmer {
  background: linear-gradient(90deg, transparent 0%, rgba(180, 83, 9, 0.3) 50%, transparent 100%);
  background-size: 200% 100%;
  animation: shimmer 3s infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.luxury-divider {
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #B45309, transparent);
  margin: 2rem auto;
  animation: shimmer 2s infinite;
}

.hero-content-luxury {
  position: relative;
  z-index: 10;
}

.floating-icon {
  position: absolute;
  font-size: 3rem;
  color: rgba(180, 83, 9, 0.2);
  animation: floatSlow 6s ease-in-out infinite;
}

.floating-icon:nth-child(1) {
  top: 20%;
  left: 5%;
  animation-delay: 0s;
}

.floating-icon:nth-child(2) {
  top: 50%;
  right: 10%;
  animation-delay: 2s;
}

.floating-icon:nth-child(3) {
  bottom: 30%;
  left: 15%;
  animation-delay: 4s;
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--color-interactive);
    flex-direction: column;
    padding: var(--space-3xl) var(--space-xl);
    transition: right var(--transition-smooth);
    border-left: 1px solid rgba(229, 231, 235, 0.1);
    z-index: 999;
  }

  .nav-menu.active {
    right: 0;
  }

  .burger-toggle {
    display: block;
  }

  .header-container {
    padding: var(--space-md) var(--space-lg);
  }

  .hero-content {
    padding: var(--space-2xl) var(--space-md);
  }

  .content-grid,
  .product-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .asymmetric-item {
    max-width: 100%;
    margin-left: 0;
  }

  .asymmetric-item:nth-child(even) {
    margin-left: 0;
    max-width: 100%;
  }

  h1 {
    font-size: var(--font-size-4xl);
  }

  h2 {
    font-size: var(--font-size-3xl);
  }

  h3 {
    font-size: var(--font-size-2xl);
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-sm);
  }

  .section {
    padding: var(--space-2xl) 0;
  }

  .hero-section {
    min-height: 70vh;
  }

  .product-image {
    height: 250px;
  }

  .contact-container {
    padding: var(--space-md);
  }

  .contact-form {
    padding: var(--space-lg);
  }
}

@media (max-width: 320px) {
  :root {
    --space-xs: 0.375rem;
    --space-sm: 0.5rem;
    --space-md: 0.75rem;
    --space-lg: 1rem;
    --space-xl: 1.25rem;
    --space-2xl: 1.5rem;
    --space-3xl: 2rem;
    --font-size-xs: 0.625rem;
    --font-size-sm: 0.75rem;
    --font-size-base: 0.875rem;
    --font-size-lg: 1rem;
    --font-size-xl: 1.125rem;
    --font-size-2xl: 1.25rem;
    --font-size-3xl: 1.5rem;
    --font-size-4xl: 1.75rem;
    --font-size-5xl: 2rem;
  }

  .container {
    padding: 0 var(--space-sm);
  }

  .header-container {
    padding: var(--space-sm) var(--space-md);
    flex-wrap: wrap;
  }

  .logo {
    font-size: var(--font-size-lg);
    flex: 1 1 100%;
    text-align: center;
    margin-bottom: var(--space-xs);
  }

  .nav-menu {
    width: 100%;
    position: static;
    height: auto;
    flex-direction: row;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-sm);
    background: transparent;
    border: none;
  }

  .nav-link {
    font-size: var(--font-size-xs);
    padding: var(--space-xs);
  }

  .burger-toggle {
    position: absolute;
    top: var(--space-sm);
    right: var(--space-md);
  }

  .hero-section {
    min-height: 60vh;
    padding: var(--space-xl) 0;
  }

  .hero-content {
    padding: var(--space-lg) var(--space-sm);
  }

  .hero-title {
    font-size: clamp(1.75rem, 8vw, 2.5rem);
    line-height: 1.1;
    margin-bottom: var(--space-md);
    word-break: break-word;
  }

  .hero-subtitle {
    font-size: var(--font-size-base);
    margin-bottom: var(--space-lg);
    line-height: 1.5;
  }

  .hero-button {
    padding: var(--space-sm) var(--space-lg);
    font-size: var(--font-size-sm);
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    display: block;
  }

  .section {
    padding: var(--space-xl) 0;
  }

  .section-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
    margin-bottom: var(--space-lg);
    line-height: 1.2;
  }

  .content-grid,
  .product-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .content-card,
  .product-card {
    padding: var(--space-md);
    border-radius: var(--radius-md);
  }

  .product-image {
    height: 200px;
  }

  .product-title {
    font-size: var(--font-size-lg);
  }

  .product-price {
    font-size: var(--font-size-xl);
  }

  .asymmetric-item {
    max-width: 100%;
    margin-left: 0;
    padding: var(--space-md);
  }

  .asymmetric-item:nth-child(even) {
    margin-left: 0;
    max-width: 100%;
  }

  .contact-container {
    padding: var(--space-md);
  }

  .contact-form {
    padding: var(--space-md);
  }

  .form-input,
  .form-textarea {
    padding: var(--space-sm);
    font-size: var(--font-size-base);
  }

  .form-textarea {
    min-height: 120px;
  }

  .submit-button {
    padding: var(--space-sm) var(--space-lg);
    font-size: var(--font-size-sm);
  }

  .map-container {
    height: 300px;
    margin-top: var(--space-lg);
  }

  .geometric-shape {
    display: none;
  }

  .floating-icon {
    display: none;
  }

  .particle-burst {
    width: 2px;
    height: 2px;
  }

  .wave-background {
    height: 60px;
  }

  .luxury-divider {
    width: 60px;
    margin: var(--space-md) auto;
  }

  .hero-gradient-text,
  .hero-shimmer {
    font-size: clamp(1.75rem, 8vw, 2.5rem);
  }

  .popup-content {
    padding: var(--space-lg);
    max-width: 95%;
  }

  .popup-close {
    top: var(--space-sm);
    right: var(--space-sm);
    font-size: var(--font-size-xl);
  }

  .footer {
    padding: var(--space-md) 0;
    font-size: var(--font-size-xs);
  }

  .footer p {
    font-size: var(--font-size-xs);
    line-height: 1.4;
  }

  .footer a {
    font-size: var(--font-size-xs);
    margin: 0 var(--space-xs);
  }

  h1 {
    font-size: clamp(1.75rem, 8vw, 2.5rem);
  }

  h2 {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  h3 {
    font-size: clamp(1.25rem, 5vw, 1.75rem);
  }

  h4 {
    font-size: clamp(1.125rem, 4vw, 1.5rem);
  }

  h5 {
    font-size: var(--font-size-lg);
  }

  h6 {
    font-size: var(--font-size-base);
  }

  p {
    font-size: var(--font-size-base);
    line-height: 1.6;
  }

  ul, ol {
    margin-left: var(--space-lg);
    font-size: var(--font-size-base);
  }

  li {
    margin-bottom: var(--space-xs);
  }

  .hero-luxury-1 {
    min-height: 50vh;
  }

  .hero-content-luxury {
    padding: var(--space-md) var(--space-sm);
  }

  .hero-canvas {
    display: none;
  }

  .nav-menu.active {
    width: 100%;
    right: 0;
    padding: var(--space-lg) var(--space-md);
  }

  .nav-menu.active .nav-link {
    font-size: var(--font-size-sm);
    padding: var(--space-sm);
    display: block;
    text-align: center;
    width: 100%;
  }

  .content-card h3,
  .content-card h4 {
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-sm);
  }

  .product-info {
    padding: var(--space-md);
  }

  .product-info p {
    font-size: var(--font-size-sm);
    line-height: 1.5;
  }

  .asymmetric-layout {
    gap: var(--space-md);
  }

  .form-group {
    margin-bottom: var(--space-md);
  }

  .form-label {
    font-size: var(--font-size-xs);
    margin-bottom: var(--space-xs);
  }

  .form-checkbox {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-xs);
  }

  .checkbox-input {
    width: 16px;
    height: 16px;
    margin-top: 0.125rem;
  }

  .checkbox-label {
    font-size: var(--font-size-xs);
    line-height: 1.4;
  }

  .error-title {
    font-size: clamp(4rem, 20vw, 6rem);
  }

  .error-message {
    font-size: var(--font-size-base);
    padding: 0 var(--space-sm);
  }

  .popup-content h2 {
    font-size: var(--font-size-xl);
  }

  .popup-content p {
    font-size: var(--font-size-sm);
  }

  .contact-container .asymmetric-item {
    padding: var(--space-md);
    margin-bottom: var(--space-md);
  }

  .contact-container .asymmetric-item h2 {
    font-size: var(--font-size-xl);
  }

  .contact-container .asymmetric-item p {
    font-size: var(--font-size-sm);
  }

  .contact-container .asymmetric-item i {
    font-size: 1.25rem;
  }

  .hero-button + .hero-button {
    margin-top: var(--space-sm);
  }

  img {
    max-width: 100%;
    height: auto;
  }

  table {
    font-size: var(--font-size-xs);
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .content-card i,
  .product-card i {
    font-size: 1.5rem;
  }

  .section-title br {
    display: block;
  }

  .hero-title br {
    display: block;
  }

  .luxury-divider {
    margin: var(--space-sm) auto;
  }

  .wave-background {
    display: none;
  }

  .hero-section {
    overflow: hidden;
  }

  .hero-content {
    position: relative;
    z-index: 10;
  }

  .content-card[style*="text-align: center"] {
    padding: var(--space-md);
  }

  .content-card[style*="text-align: center"] i {
    font-size: 2rem;
    margin-bottom: var(--space-sm);
  }

  .content-card[style*="text-align: center"] h4 {
    font-size: var(--font-size-base);
    margin-bottom: var(--space-xs);
  }

  .content-card[style*="text-align: center"] p {
    font-size: var(--font-size-xs);
  }

  .asymmetric-item img {
    width: 100%;
    height: auto;
    margin-top: var(--space-sm);
  }

  .footer p:first-child {
    font-size: var(--font-size-xs);
    line-height: 1.3;
  }

  .footer p:last-child {
    font-size: 0.625rem;
    line-height: 1.4;
  }

  .footer a {
    font-size: 0.625rem;
    padding: 0 var(--space-xs);
  }

  .header-container.hidden {
    transform: none;
    opacity: 1;
  }

  .burger-toggle {
    font-size: var(--font-size-xl);
    padding: var(--space-xs);
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--color-interactive);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 4rem;
    gap: var(--space-md);
    z-index: 999;
    transition: right var(--transition-smooth);
    border-left: none;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-menu li {
    width: 100%;
    text-align: center;
  }

  .nav-link {
    display: block;
    width: 100%;
    padding: var(--space-md);
    font-size: var(--font-size-base);
  }

  .hero-button {
    min-height: 44px;
    touch-action: manipulation;
  }

  .submit-button {
    min-height: 44px;
    touch-action: manipulation;
  }

  .form-input,
  .form-textarea {
    min-height: 44px;
    touch-action: manipulation;
  }

  a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  button {
    min-height: 44px;
    touch-action: manipulation;
  }

  .popup-accept {
    min-height: 44px;
    touch-action: manipulation;
  }

  .popup-close {
    min-width: 44px;
    min-height: 44px;
    touch-action: manipulation;
  }

  .content-grid[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
  }

  .product-grid {
    grid-template-columns: 1fr !important;
  }

  .hero-content > div[style*="display: flex"] {
    flex-direction: column;
    gap: var(--space-sm);
  }

  .hero-content > div[style*="display: flex"] > div {
    width: 100%;
    max-width: 100%;
  }

  .hero-content > div[style*="display: flex"] > a {
    width: 100%;
    max-width: 100%;
  }

  .contact-section .asymmetric-layout {
    flex-direction: column;
  }

  .contact-section .asymmetric-item {
    width: 100%;
    max-width: 100%;
  }

  .contact-section .asymmetric-item:nth-child(even) {
    margin-left: 0;
    max-width: 100%;
  }

  .section[style*="background:"] {
    padding: var(--space-lg) 0;
  }

  .content-card[style*="max-width"] {
    max-width: 100% !important;
    padding: var(--space-md) !important;
  }

  .content-card[style*="text-align: center"][style*="padding"] {
    padding: var(--space-md) !important;
  }

  .content-card[style*="text-align: center"] > div[style*="margin-top"] {
    margin-top: var(--space-md) !important;
  }

  .content-card[style*="text-align: center"] > div[style*="display: flex"] {
    flex-direction: column !important;
    gap: var(--space-sm) !important;
  }

  .content-card[style*="text-align: center"] > div[style*="display: flex"] > div {
    width: 100% !important;
    min-width: 100% !important;
  }
}
