html,
body {
  overflow-x: hidden;
  width: 100%;
}
:root {
  --bg-dark: #0f0d0c;
  --card-bg: #1c1815;
  --card-border: #332d28;
  --primary-brown: #d9b18a;
  --muted-brown: #8a7c73;
  --text-primary: #f5f5f5;
  --text-secondary: #a39c96;
  --green-status: #4ade80;
  --green-status-bg: rgba(74, 222, 128, 0.1);
  --red-status: #ef4444;
  --red-status-bg: rgba(239, 68, 68, 0.1);

  --magnetic-dampen: 0.15;
  --parallax-scale: 0.35;
}

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

body {
  font-family: "Urbanist", sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(to right, rgba(217, 177, 138, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(217, 177, 138, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: -1;
}

h1,
h2,
h3,
h4 {
  color: var(--text-primary);
  font-weight: 600;
  letter-spacing: -0.02em;
}

p {
  color: var(--text-secondary);
}

a {
  color: var(--text-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--primary-brown);
}

.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(60px, 10vw, 120px) clamp(20px, 4vw, 24px);
  width: 100%;
}

.section-header {
  margin-bottom: clamp(32px, 8vw, 60px);
  text-align: center;
}

.section-header h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 12px;
}

.section-header p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  max-width: 600px;
  margin: 0 auto;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 32px);
}

.bento-card {
  background-color: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: clamp(16px, 3vw, 32px);
  padding: clamp(24px, 5vw, 48px);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.col-span-2 {
  grid-column: span 2;
}
.col-span-1 {
  grid-column: span 1;
}

@media (max-width: 1100px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-main,
  .hero-about,
  .price-card,
  .details-card {
    grid-column: span 2 !important;
  }
}

@media (max-width: 640px) {
  .bento-grid {
    grid-template-columns: 1fr;
  }
  .col-span-2,
  .col-span-1,
  .hero-main,
  .hero-about,
  .price-card,
  .details-card {
    grid-column: span 1 !important;
  }
  .section {
    padding: clamp(40px, 12vw, 80px) 20px;
  }
}

.policy-page .footer {
  padding-top: 10px !important;
}

@media (max-width: 768px) {
  .policy-page .footer {
    padding-top: 5px !important;
  }
}
