
:root {
  --bg: hsl(20,30%,5%);
  --bg-secondary: hsl(20,20%,8%);
  --fg: hsl(35,30%,90%);
  --primary: hsl(38,75%,55%);
  --primary-fg: hsl(0,60%,10%);
  --accent: hsl(0,65%,32%);
  --accent-fg: hsl(35,40%,92%);
  --muted: hsl(30,20%,55%);
  --border: hsl(30,20%,18%);
  --card-bg: hsl(20,25%,8%);
  --cream: hsl(35,50%,90%);
  --gold: hsl(38,75%,55%);
  --maroon: hsl(0,68%,28%);
  --mid: hsl(20,65%,13%);
  --warm: hsl(0,65%,32%);
  --caramel: hsl(30,55%,49%);
}

* { box-sizing: border-box; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  overflow-x: hidden;
}

/* Noise overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: .5;
}

/* Typography */
.font-heading { font-family: 'Playfair Display', serif; }
.font-elegant { font-family: 'Cormorant Garamond', serif; }
.text-primary-custom { color: var(--primary) !important; }
.text-cream { color: var(--cream); }
.text-muted-custom { color: var(--muted); }
.bg-secondary-custom { background: var(--bg-secondary); }
.bg-card { background: var(--card-bg); }

/* Section tag */
.section-tag {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--primary);
}

/* Letter spacing helpers */
.ls-1 { letter-spacing: .1em; }
.ls-2 { letter-spacing: .12em; }

/* Nav */
.nav-link-custom {
  font-size: 0.95rem !important;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted) !important;
  transition: color 0.3s ease, text-shadow 0.3s ease;
  position: relative;
  padding-bottom: 5px !important;
}

.nav-link-custom::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: width 0.3s ease;
}

.nav-link-custom:hover, .nav-link-custom.active { 
  color: var(--primary) !important;
}

.nav-link-custom:hover::after, .nav-link-custom.active::after {
  width: 100%;
}

/* Buttons */
.btn-accent {
  background: var(--accent);
  color: var(--accent-fg);
  border: none;
  border-radius: 2px;
  transition: background .3s;
}
.btn-accent:hover { background: var(--maroon); color: var(--accent-fg); }
.btn-primary-custom {
  background: var(--primary);
  color: var(--primary-fg);
  border: none;
  border-radius: 2px;
  transition: background .3s;
}
.btn-primary-custom:hover { background: var(--caramel); color: var(--primary-fg); }
.btn-outline-gold {
  border: 1px solid rgba(198,138,46,.5);
  color: var(--primary);
  background: transparent;
  border-radius: 0;
  transition: all .3s;
}
.btn-outline-gold:hover { background: rgba(198,138,46,.1); border-color: var(--primary); color: var(--primary); }

/* Product cards */
.product-card {
  background: var(--bg);
  border: 1px solid rgba(198,138,46,.1);
  border-radius: 2px;
  overflow: hidden;
  transition: transform .3s, border-color .3s;
  cursor: pointer;
}
.product-card:hover { transform: translateY(-6px); border-color: rgba(198,138,46,.4); }
.product-img-placeholder {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(44,22,10,.3);
  position: relative;
  font-size: 3rem;
}
.product-img-wrapper {
  height: 300px;
  position: relative;
  overflow: hidden;
  background: rgba(44,22,10,.3);
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .3s ease;
}
.product-card:hover .product-img {
  transform: scale(1.05);
}
.badge-gold {
  position: absolute;
  top: 10px; right: 10px;
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: var(--primary);
  color: var(--primary-fg);
  padding: 4px 10px;
  border-radius: 2px;
  z-index: 10;
}

/* Value cards */
.value-card {
  border: 1px solid rgba(198,138,46,.1);
  border-radius: 2px;
  padding: 2rem;
  text-align: center;
  transition: border-color .3s;
  background: var(--bg);
}
.value-card:hover { border-color: rgba(198,138,46,.4); }

/* Process cards */
.process-card {
  padding: 2rem;
  border: 1px solid rgba(198,138,46,.1);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  transition: border-color .3s;
}
.process-card:hover { border-color: rgba(198,138,46,.4); }
.process-num {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 700;
  color: rgba(198,138,46,.1);
  position: absolute;
  top: 5px; right: 15px;
  line-height: 1;
}

/* Testimonial */
.testimonial-card {
  padding: 2rem;
  border: 1px solid rgba(198,138,46,.1);
  border-radius: 2px;
  background: var(--bg);
}

/* Footer link */
.footer-link {
  color: var(--muted);
  text-decoration: none;
  font-size: .875rem;
  transition: color .3s;
}
.footer-link:hover { color: var(--fg); }

/* Hero carousel */
.hero-section { min-height: 100vh; position: relative; overflow: hidden; }
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--bg), rgba(13,7,2,.8), transparent);
}
.hero-content {
  position: relative;
  z-index: 10;
  max-width: 600px;
  padding-top: 120px;
}
.hero-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 12px;
}
.hero-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  border: none;
  background: rgba(198,138,46,.3);
  cursor: pointer;
  transition: all .3s;
}
.hero-dot.active { background: var(--primary); width: 32px; border-radius: 6px; }

/* Marquee */
.marquee-wrap { overflow: hidden; background: var(--primary); padding: 10px 0; }
.marquee-track {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  animation: marquee 18s linear infinite;
}
.marquee-item {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--primary-fg);
  flex-shrink: 0;
}
.marquee-item.sep { opacity: .4; }

@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Scroll anim */
.reveal { opacity: 0; transform: translateY(28px); transition: all .8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Form */
.form-control-dark {
  background: var(--bg-secondary);
  border: 1px solid rgba(198,138,46,.2);
  color: var(--fg);
  padding: .85rem 1rem;
  border-radius: 2px;
  font-family: 'DM Sans', sans-serif;
  font-size: .875rem;
  transition: border-color .3s;
}
.form-control-dark::placeholder { color: var(--muted); }
.form-control-dark:focus { border-color: var(--primary); outline: none; box-shadow: none; background: var(--bg-secondary); color: var(--fg); }

/* CTA gradient */
.cta-gradient {
  background: linear-gradient(135deg, var(--warm), var(--mid), var(--bg));
  border-top: 1px solid rgba(198,138,46,.15);
  border-bottom: 1px solid rgba(198,138,46,.15);
}

/* Social Icons */
.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #ffffff;
  color: #1a1a1a;
  border-radius: 50%;
  font-size: 1.1rem;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.social-icon:hover {
  background-color: var(--primary);
  color: #ffffff;
  transform: translateY(-4px);
  box-shadow: 0 4px 8px rgba(198, 138, 46, 0.3);
}

.footer-link {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--primary);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content { padding-top: 100px; }
}
