:root {
  --bg: #080808;
  --bg-1: #0d0d0d;
  --bg-2: #131313;
  --gold: #c9a96e;
  --gold-hv: #e5c78f;
  --text: #ede9e1;
  --text-muted: #838383;
  --border: rgba(255, 255, 255, 0.055);
  --font-display: 'Cormorant Garamond', serif;
  --font-mono: 'Space Mono', monospace;
}

.home-container {
  background-color: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  padding-bottom: 80px;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: clamp(100px, 15vw, 200px) 20px;
  background-color: var(--bg-1);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(201, 169, 110, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  max-width: 900px;
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 30px;
  color: #fff;
  letter-spacing: -0.02em;
}

.hero p {
  margin: 0 auto 50px;
  color: var(--text-muted);
  max-width: 600px;
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.8;
  font-family: var(--font-display);
  font-style: italic;
}

.btn {
  background: var(--gold);
  color: #000;
  padding: 18px 45px;
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  border: 1px solid var(--gold);
}

.btn:hover {
  background: transparent;
  color: var(--gold);
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

/* Collection */
.collection {
  text-align: center;
  padding: clamp(80px, 12vw, 120px) 20px;
}

.collection h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: 80px;
  font-weight: 300;
  color: var(--gold);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.product-card {
  background-color: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 30px;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: left;
}

.product-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  margin-bottom: 30px;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin-bottom: 10px;
  color: #fff;
  font-weight: 400;
}

.product-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 20px;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.product-card:hover {
  transform: translateY(-15px);
  border-color: var(--gold);
  background-color: var(--bg-2);
}

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

/* Precision Section */
.precision {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(40px, 8vw, 100px);
  padding: clamp(100px, 15vw, 180px) 20px;
  background-color: var(--bg-1);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.precision-image {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  position: relative;
}

.precision-image::after {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  width: 100%;
  height: 100%;
  border: 1px solid var(--gold);
  z-index: 1;
  pointer-events: none;
}

.precision-image img {
  width: 100%;
  display: block;
  position: relative;
  z-index: 2;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
}

.precision-content {
  flex: 1;
  min-width: 300px;
  max-width: 550px;
  text-align: left;
}

.precision-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 30px;
  font-weight: 300;
  line-height: 1.1;
  color: var(--gold);
}

.precision-content p {
  color: var(--text-muted);
  margin-bottom: 50px;
  line-height: 1.8;
  font-size: 1.1rem;
  font-family: var(--font-display);
  font-style: italic;
}

/* SHOP BY CATEGORY SECTION */
.categories-section {
  padding: clamp(100px, 15vw, 180px) 20px;
  background-color: var(--bg);
  text-align: center;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: 100px;
  color: #fff;
  font-weight: 300;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
}

.category-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 550px;
  border: 1px solid var(--border);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.category-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
  filter: brightness(0.6) grayscale(0.2);
}

.category-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, transparent 100%);
  color: white;
  padding: 60px 40px;
  text-align: left;
  transition: all 0.4s ease;
}

.category-name {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 300;
  margin: 0 0 15px 0;
  letter-spacing: 0.05em;
}

.view-text {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  display: flex;
  align-items: center;
  gap: 15px;
}

.view-text::after {
  content: '';
  width: 40px;
  height: 1px;
  background-color: var(--gold);
  transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* HOVER EFFECTS */
.category-card:hover {
  transform: translateY(-20px);
  border-color: var(--gold);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.8);
}

.category-card:hover .category-img {
  transform: scale(1.1);
  filter: brightness(0.8) grayscale(0);
}

.category-card:hover .view-text::after {
  width: 80px;
}

.no-categories {
  color: var(--text-muted);
  font-size: 1.2rem;
  padding: 60px;
  font-style: italic;
}

/* Responsive */
@media (max-width: 1024px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .categories-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .product-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 8vw, 3rem);
  }

  .precision {
    padding: 60px 20px;
  }
}

@media (max-width: 480px) {
  .product-grid {
    grid-template-columns: 1fr;
  }

  .category-card {
    height: 400px;
  }
}