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

:root {
  --cold-cement: #E5E7EB;
  --burnt-copper: #92400E;
  --iron-filings: #111827;
  --oxidized-dust: #B45309;
  --stone-wash: #D1D5DB;
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  
  --radius-sm: 0.5rem;
  --radius-md: 1rem;
  --radius-lg: 2rem;
  
  --shadow-sm: 0 2px 8px rgba(17, 24, 39, 0.08);
  --shadow-md: 0 4px 16px rgba(17, 24, 39, 0.12);
  --shadow-lg: 0 8px 32px rgba(17, 24, 39, 0.16);
  
  --transition-fast: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.6s cubic-bezier(0.65, 0, 0.35, 1);
  --transition-luxury: 0.8s cubic-bezier(0.76, 0, 0.24, 1);
}

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

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

body {
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--iron-filings);
  background: var(--cold-cement);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: var(--space-sm);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.375rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

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

a:hover {
  color: var(--oxidized-dust);
}

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

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

.header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(0);
  width: 90%;
  max-width: 70rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  padding: var(--space-sm) var(--space-md);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  box-shadow: var(--shadow-md);
  z-index: 1000;
  transition: all var(--transition-luxury);
}

.header.hidden {
  transform: translateX(-50%) translateY(-120%);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--burnt-copper);
  letter-spacing: 0.05em;
  transition: all var(--transition-fast);
}

.logo:hover {
  transform: scale(1.05);
}

.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(--oxidized-dust);
  transition: width var(--transition-smooth);
}

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

.burger {
  display: none;
  flex-direction: column;
  gap: 0.375rem;
  cursor: pointer;
  padding: var(--space-xs);
  background: none;
  border: none;
}

.burger span {
  width: 1.5rem;
  height: 2px;
  background: var(--burnt-copper);
  transition: all var(--transition-fast);
}

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

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

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 50rem;
  animation: fadeInUp var(--transition-luxury) ease-out;
}

.hero h1 {
  font-size: 4.5rem;
  font-weight: 700;
  color: var(--burnt-copper);
  margin-bottom: var(--space-md);
  text-shadow: 0 2px 20px rgba(146, 64, 14, 0.2);
}

.hero p {
  font-size: 1.125rem;
  color: var(--iron-filings);
  margin-bottom: var(--space-lg);
  opacity: 0.9;
}

.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: var(--radius-md);
  transition: all var(--transition-smooth);
  cursor: pointer;
  border: none;
  font-family: 'Inter', sans-serif;
}

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

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

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

.btn-secondary:hover {
  background: var(--burnt-copper);
  color: white;
}

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

.section-subtitle {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--oxidized-dust);
  margin-bottom: var(--space-xs);
}

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

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: white;
  padding: var(--space-md);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
  transform: translateY(2rem);
}

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

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

.card-icon {
  font-size: 2.5rem;
  color: var(--burnt-copper);
  margin-bottom: var(--space-sm);
}

.card h3 {
  color: var(--iron-filings);
  margin-bottom: var(--space-sm);
}

.card p {
  font-size: 0.875rem;
  color: var(--iron-filings);
  opacity: 0.8;
}

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

.asymmetric-section:nth-child(even) {
  grid-template-columns: 0.8fr 1.2fr;
}

.asymmetric-section:nth-child(even) .asymmetric-content {
  order: 2;
}

.asymmetric-section:nth-child(even) .asymmetric-visual {
  order: 1;
}

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

.asymmetric-visual {
  position: relative;
  height: 25rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: rotate(-2deg);
  transition: all var(--transition-luxury);
}

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

.asymmetric-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.overlap-bg {
  position: absolute;
  top: 10%;
  right: 5%;
  width: 40%;
  height: 80%;
  background: var(--burnt-copper);
  border-radius: var(--radius-lg);
  opacity: 0.1;
  z-index: 0;
}

.overlap-content {
  position: relative;
  z-index: 1;
  background: white;
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  max-width: 70%;
}

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

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

.product-image {
  width: 100%;
  height: 15rem;
  background: var(--stone-wash);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-info {
  padding: var(--space-md);
}

.product-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--burnt-copper);
  margin: var(--space-sm) 0;
}

.contact-section {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 40rem;
  height: 40rem;
  background: radial-gradient(circle, rgba(146, 64, 14, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

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

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: var(--space-xs);
  color: var(--iron-filings);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem var(--space-sm);
  font-size: 0.875rem;
  font-family: 'Inter', sans-serif;
  border: 2px solid var(--stone-wash);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  background: var(--cold-cement);
}

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

.form-group textarea {
  resize: vertical;
  min-height: 8rem;
}

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

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

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

.map-container {
  width: 100%;
  height: 25rem;
  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(--iron-filings);
  color: var(--stone-wash);
  padding: var(--space-md) 0;
  text-align: center;
  font-size: 0.8125rem;
}

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

.footer a:hover {
  color: white;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(17, 24, 39, 0.8);
  backdrop-filter: blur(8px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.modal.active {
  display: flex;
  opacity: 1;
}

.modal-content {
  background: white;
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  max-width: 35rem;
  width: 90%;
  box-shadow: var(--shadow-lg);
  transform: scale(0.9);
  transition: transform var(--transition-smooth);
}

.modal.active .modal-content {
  transform: scale(1);
}

.modal-close {
  float: right;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--iron-filings);
  transition: color var(--transition-fast);
}

.modal-close:hover {
  color: var(--burnt-copper);
}

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

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

.luxury-thanks {
  position: relative;
  max-width: 50rem;
  margin: 0 auto;
  text-align: center;
}

.luxury-thanks-decoration {
  position: absolute;
  top: -5rem;
  right: -5rem;
  width: 20rem;
  height: 20rem;
  background: radial-gradient(circle, rgba(146, 64, 14, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.luxury-thanks-content {
  position: relative;
  z-index: 1;
  background: white;
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.luxury-icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  background: linear-gradient(135deg, var(--burnt-copper), var(--oxidized-dust));
  border-radius: 50%;
  margin-bottom: var(--space-md);
  animation: float 3s ease-in-out infinite;
}

.luxury-icon-wrapper i {
  font-size: 2.5rem;
  color: white;
}

.luxury-subtitle {
  font-size: 1.125rem;
  color: var(--oxidized-dust);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: var(--space-md);
}

.luxury-divider {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--burnt-copper), transparent);
  margin: var(--space-md) auto;
}

.luxury-divider-center {
  width: 8rem;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--burnt-copper), transparent);
  margin: var(--space-md) auto;
}

.luxury-actions {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  margin-top: var(--space-lg);
  flex-wrap: wrap;
}

.luxury-error {
  position: relative;
  max-width: 50rem;
  margin: 0 auto;
  text-align: center;
}

.luxury-error-decoration {
  position: absolute;
  top: -5rem;
  left: -5rem;
  width: 20rem;
  height: 20rem;
  background: radial-gradient(circle, rgba(146, 64, 14, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.luxury-error-content {
  position: relative;
  z-index: 1;
  background: white;
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.luxury-error-number {
  font-size: 8rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--burnt-copper), var(--oxidized-dust));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.luxury-policy-wrapper {
  max-width: 55rem;
  margin: 0 auto;
}

.luxury-policy-header {
  text-align: center;
  background: white;
  padding: var(--space-xl);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.luxury-policy-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--burnt-copper), var(--oxidized-dust));
}

.luxury-policy-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, var(--burnt-copper), var(--oxidized-dust));
  border-radius: 50%;
  margin-bottom: var(--space-md);
}

.luxury-policy-icon i {
  font-size: 2rem;
  color: white;
}

.luxury-policy-date {
  font-size: 0.875rem;
  color: var(--stone-wash);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: var(--space-sm);
}

.luxury-policy-content {
  background: white;
  padding: var(--space-lg);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.luxury-policy-section {
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--cold-cement);
}

.luxury-policy-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.luxury-policy-section h2 {
  color: var(--burnt-copper);
  margin-bottom: var(--space-sm);
  position: relative;
  padding-left: var(--space-md);
}

.luxury-policy-section h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 70%;
  background: linear-gradient(180deg, var(--burnt-copper), var(--oxidized-dust));
  border-radius: 2px;
}

.luxury-contact-box {
  background: var(--cold-cement);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--burnt-copper);
  margin-top: var(--space-md);
}

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

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-1rem); }
}

.floating {
  animation: float 3s ease-in-out infinite;
}

@media (max-width: 64rem) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  
  .hero h1 { font-size: 3.5rem; }
  
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  
  .asymmetric-section {
    grid-template-columns: 1fr;
  }
  
  .asymmetric-section:nth-child(even) .asymmetric-content,
  .asymmetric-section:nth-child(even) .asymmetric-visual {
    order: 0;
  }
  
  .overlap-content {
    max-width: 100%;
  }
}

@media (max-width: 48rem) {
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: white;
    flex-direction: column;
    padding: var(--space-xl) var(--space-md);
    box-shadow: var(--shadow-lg);
    transition: right var(--transition-smooth);
    align-items: flex-start;
  }
  
  .nav.active {
    right: 0;
  }
  
  .burger {
    display: flex;
  }
  
  .hero h1 { font-size: 2.5rem; }
  
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
  
  .section {
    padding: var(--space-lg) 0;
  }
  
  .error-content h1 {
    font-size: 5rem;
  }
}

@media (max-width: 20rem) {
  html {
    font-size: 87.5%;
  }
  
  .hero h1 { font-size: 1.75rem; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  
  .header {
    width: 95%;
    padding: 0.75rem var(--space-sm);
  }
  
  .logo {
    font-size: 1.125rem;
  }
  
  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.8125rem;
  }
  
  .card {
    padding: var(--space-sm);
  }
  
  .card-icon {
    font-size: 2rem;
  }
  
  .section {
    padding: var(--space-md) 0;
  }
  
  .container {
    padding: 0 var(--space-sm);
  }
  
  .luxury-error-number {
    font-size: 5rem;
  }
  
  .luxury-icon-wrapper {
    width: 4rem;
    height: 4rem;
  }
  
  .luxury-icon-wrapper i {
    font-size: 2rem;
  }
  
  .luxury-thanks-content,
  .luxury-error-content,
  .luxury-policy-header,
  .luxury-policy-content {
    padding: var(--space-md);
  }
  
  .product-image {
    height: 12rem;
  }
  
  .asymmetric-visual {
    height: 18rem;
  }
  
  .luxury-actions {
    flex-direction: column;
  }
  
  .luxury-actions .btn {
    width: 100%;
  }
}

/* 320px – best small-screen response (minimal width) */
@media (max-width: 320px) {
  html {
    font-size: 87.5%;
    -webkit-text-size-adjust: 100%;
  }

  body {
    font-size: 0.875rem;
    min-width: 0;
  }

  .container {
    padding: 0 var(--space-xs);
    min-width: 0;
  }

  .header {
    width: 100%;
    max-width: 100%;
    padding: var(--space-xs) var(--space-sm);
    border-radius: 0;
  }

  .header-inner {
    min-width: 0;
  }

  .logo {
    font-size: 1rem;
    letter-spacing: 0.03em;
    max-width: 60%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .nav {
    width: 85%;
    max-width: 18rem;
    padding: var(--space-lg) var(--space-sm);
  }

  .nav a {
    font-size: 0.8125rem;
    padding: var(--space-xs) 0;
    min-height: 2.75rem;
    display: flex;
    align-items: center;
  }

  .burger {
    padding: var(--space-xs);
    min-width: 2.25rem;
    min-height: 2.25rem;
  }

  .burger span {
    width: 1.25rem;
  }

  .hero {
    padding: var(--space-lg) 0;
    min-height: 100vh;
  }

  .hero h1 {
    font-size: 1.75rem;
    line-height: 1.2;
    margin-bottom: var(--space-sm);
  }

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

  .hero-content {
    padding: 0 var(--space-xs);
  }

  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.375rem; }
  h3 { font-size: 1.25rem; }
  h4 { font-size: 1.125rem; }

  .btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    width: 100%;
    text-align: center;
  }

  .btn + .btn {
    margin-top: var(--space-xs);
  }

  .section {
    padding: var(--space-md) 0;
  }

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

  .section-subtitle {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
  }

  .grid,
  .grid-2,
  .grid-3,
  .grid-4 {
    gap: var(--space-sm);
    grid-template-columns: 1fr;
  }

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

  .card-icon {
    font-size: 1.75rem;
  }

  .card h3 {
    font-size: 1.125rem;
  }

  .card p {
    font-size: 0.8125rem;
  }

  .asymmetric-section {
    gap: var(--space-md);
  }

  .asymmetric-content {
    padding: var(--space-sm);
  }

  .asymmetric-visual {
    height: 14rem;
  }

  .overlap-content {
    padding: var(--space-md);
    max-width: 100%;
  }

  .overlap-bg {
    width: 60%;
    right: 0;
  }

  .product-image {
    height: 10rem;
  }

  .product-info {
    padding: var(--space-sm);
  }

  .product-price {
    font-size: 1.5rem;
  }

  .contact-section {
    padding: var(--space-md);
    border-radius: var(--radius-md);
  }

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

  .form-group input,
  .form-group textarea {
    padding: 0.625rem var(--space-xs);
    font-size: 0.8125rem;
  }

  .form-group textarea {
    min-height: 6rem;
  }

  .checkbox-group {
    flex-wrap: wrap;
    margin: var(--space-sm) 0;
  }

  .map-container {
    height: 14rem;
    margin: var(--space-sm) 0;
  }

  .modal-content {
    width: 95%;
    padding: var(--space-md);
    margin: var(--space-sm);
  }

  .modal-close {
    font-size: 1.25rem;
  }

  .footer {
    padding: var(--space-sm) var(--space-xs);
    font-size: 0.75rem;
  }

  .footer a {
    display: inline-block;
    margin: var(--space-xs) 0;
  }

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

  .luxury-thanks-content,
  .luxury-error-content {
    padding: var(--space-md);
  }

  .luxury-icon-wrapper {
    width: 3.5rem;
    height: 3.5rem;
  }

  .luxury-icon-wrapper i {
    font-size: 1.75rem;
  }

  .luxury-subtitle {
    font-size: 0.875rem;
    letter-spacing: 0.1em;
  }

  .luxury-error-number {
    font-size: 4rem;
  }

  .luxury-actions {
    flex-direction: column;
    gap: var(--space-xs);
    margin-top: var(--space-md);
  }

  .luxury-actions .btn {
    width: 100%;
  }

  .luxury-policy-header,
  .luxury-policy-content {
    padding: var(--space-md);
  }

  .luxury-policy-section h2 {
    font-size: 1.125rem;
    padding-left: var(--space-sm);
  }

  .luxury-policy-section h2::before {
    width: 3px;
  }

  .luxury-contact-box {
    padding: var(--space-sm);
    font-size: 0.8125rem;
  }

  .luxury-thanks-decoration,
  .luxury-error-decoration {
    width: 12rem;
    height: 12rem;
    top: -3rem;
  }

  .luxury-error-decoration {
    left: -3rem;
  }
}
