* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #0a0a0a;
  color: #f5f3ec;
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
:root { --felt: #0f3b2a; --felt-dark: #082418; --gold: #c5a46e; --gold-light: #e4c98a; }

/* ===== NAVIGATION ===== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10,10,10,0.85);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(197,164,110,0.15);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 70px; max-width: 1200px; margin: 0 auto; padding: 0 20px;
}
.logo {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(0.95rem, 3vw, 1.3rem);
  font-weight: 700;
  color: #c5a46e;
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
}
.logo span { color: #f5f3ec; }

/* Hamburger toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
  z-index: 1001;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #c5a46e;
  transition: all 0.3s ease;
  border-radius: 2px;
}
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-links {
  display: flex;
  gap: 24px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  color: #e8e4d9;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color 0.3s ease;
  position: relative;
  white-space: nowrap;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: #c5a46e;
  transition: width 0.3s ease;
}
.nav-links a:hover { color: #c5a46e; }
.nav-links a:hover::after { width: 100%; }
.cta-btn {
  background: #c5a46e; color: #0a0a0a !important;
  padding: 8px 18px;
  border-radius: 50px; font-weight: 600; font-size: 0.78rem;
  letter-spacing: 1px; transition: all 0.3s ease;
}
.cta-btn:hover {
  background: #e4c98a; transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(197,164,110,0.3);
}
.cta-btn::after { display: none !important; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #082418, #0a0a0a, #082418); padding: 20px;
}
.hero-content { text-align: center; max-width: 800px; }
.hero h1 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  font-weight: 700; line-height: 1.1; margin-bottom: 20px;
}
.hero h1 .gold { color: #c5a46e; }
.hero p {
  font-size: clamp(0.95rem, 2vw, 1.2rem); color: #8a8678;
  margin-bottom: 32px; max-width: 600px; margin-left: auto; margin-right: auto;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn {
  padding: 14px 32px; border-radius: 50px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase; font-size: 0.8rem;
  transition: all 0.3s ease; display: inline-block; border: none; cursor: pointer;
}
.btn-primary { background: #c5a46e; color: #0a0a0a; }
.btn-primary:hover { background: #e4c98a; transform: translateY(-2px); box-shadow: 0 12px 40px rgba(197,164,110,0.3); }
.btn-secondary { background: transparent; color: #f5f3ec; border: 1px solid rgba(255,255,255,0.2); }
.btn-secondary:hover { border-color: #c5a46e; color: #c5a46e; }

/* ===== SECTIONS ===== */
section { padding: 80px 0; }
.section-header { text-align: center; margin-bottom: 50px; }
.section-header h2 { font-family: Georgia, 'Times New Roman', serif; font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700; margin-bottom: 14px; }
.section-header p { color: #8a8678; max-width: 600px; margin: 0 auto; font-size: 0.95rem; }
.section-tag { display: inline-block; color: #c5a46e; font-size: 0.7rem; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 10px; }

.categories { background: #1a1a1a; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px; padding: 32px 24px; text-align: center;
  transition: all 0.4s ease;
}
.card:hover { border-color: rgba(197,164,110,0.3); transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,0.4); }
.card-icon { width: 56px; height: 56px; margin: 0 auto 16px; background: rgba(197,164,110,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.card h3 { font-family: Georgia, 'Times New Roman', serif; font-size: 1.1rem; margin-bottom: 8px; }
.card p { color: #8a8678; font-size: 0.82rem; margin-bottom: 14px; }
.card .price { color: #c5a46e; font-weight: 600; font-size: 1.05rem; }

.featured { background: #082418; }
.feat-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: 24px; overflow: hidden; transition: all 0.4s ease; }
.feat-card:hover { transform: translateY(-4px); border-color: rgba(197,164,110,0.3); box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
.feat-img { height: 180px; background: linear-gradient(135deg, #0f3b2a, #1a1a1a); display: flex; align-items: center; justify-content: center; font-size: 2.2rem; position: relative; }
.feat-img .badge { position: absolute; top: 14px; right: 14px; background: #c5a46e; color: #0a0a0a; padding: 4px 10px; border-radius: 50px; font-size: 0.6rem; font-weight: 600; letter-spacing: 1px; }
.feat-body { padding: 24px; }
.feat-body h3 { font-family: Georgia, 'Times New Roman', serif; font-size: 1.15rem; margin-bottom: 8px; }
.feat-body .desc { color: #8a8678; font-size: 0.82rem; margin-bottom: 10px; }
.feat-body .price { font-size: 1.35rem; color: #c5a46e; font-weight: 700; font-family: Georgia, 'Times New Roman', serif; }
.feat-body .btn { margin-top: 18px; width: 100%; text-align: center; }

.process { background: #1a1a1a; }
.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 32px; }
.process-step { text-align: center; }
.step-num { width: 52px; height: 52px; border: 2px solid #c5a46e; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; font-family: Georgia, 'Times New Roman', serif; font-size: 1.2rem; color: #c5a46e; font-weight: 700; }
.process-step h3 { font-family: Georgia, 'Times New Roman', serif; font-size: 1rem; margin-bottom: 8px; }
.process-step p { color: #8a8678; font-size: 0.82rem; }

.testimonials { background: #0a0a0a; }
.testimonial-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); border-radius: 20px; padding: 28px; }
.testimonial-card .stars { color: #c5a46e; font-size: 0.95rem; margin-bottom: 10px; }
.testimonial-card blockquote { font-style: italic; color: #e8e4d9; margin-bottom: 14px; font-size: 0.88rem; line-height: 1.7; }
.testimonial-card .author { color: #8a8678; font-size: 0.78rem; }
.author strong { color: #f5f3ec; }

.cta-section { background: linear-gradient(135deg, #082418, #0a0a0a); text-align: center; padding: 70px 20px; }
.cta-section h2 { font-family: Georgia, 'Times New Roman', serif; font-size: clamp(1.6rem, 4vw, 2.5rem); margin-bottom: 14px; }
.cta-section p { color: #8a8678; margin-bottom: 28px; max-width: 480px; margin-left: auto; margin-right: auto; }

footer { background: #0a0a0a; border-top: 1px solid rgba(255,255,255,0.05); padding: 50px 20px 24px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; max-width: 1200px; margin: 0 auto 32px; }
.footer-col h4 { font-family: Georgia, 'Times New Roman', serif; color: #c5a46e; margin-bottom: 14px; font-size: 0.82rem; letter-spacing: 1.5px; text-transform: uppercase; }
.footer-col p, .footer-col ul li a { color: #8a8678; font-size: 0.8rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 6px; }
.footer-col ul a { transition: color 0.3s ease; }
.footer-col ul a:hover { color: #c5a46e; }
.footer-bottom { max-width: 1200px; margin: 0 auto; text-align: center; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.05); color: #8a8678; font-size: 0.75rem; }

/* ===== INNER PAGES ===== */
.page-hero { padding-top: 120px; padding-bottom: 50px; background: linear-gradient(135deg, #082418, #0a0a0a); text-align: center; }
.page-hero h1 { font-family: Georgia, 'Times New Roman', serif; font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 10px; }
.page-hero p { color: #8a8678; font-size: 0.95rem; max-width: 600px; margin: 0 auto; }
.prod-section { background: #0a0a0a; padding: 70px 0; }
.prod-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.prod-card { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06); border-radius: 20px; overflow: hidden; transition: all 0.4s ease; display: flex; flex-direction: column; }
.prod-card:hover { border-color: rgba(197,164,110,0.3); transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,0.4); }
.prod-img { height: 160px; background: linear-gradient(135deg, #0f3b2a, #1a1a1a); display: flex; align-items: center; justify-content: center; font-size: 2.2rem; }
.prod-body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.prod-body h3 { font-family: Georgia, 'Times New Roman', serif; font-size: 1.05rem; margin-bottom: 6px; }
.prod-body .desc { color: #8a8678; font-size: 0.8rem; margin-bottom: 10px; }
.prod-body .price { color: #c5a46e; font-weight: 700; font-size: 1.2rem; font-family: Georgia, 'Times New Roman', serif; margin-bottom: 4px; }
.prod-body .btn { margin-top: auto; padding-top: 14px; width: 100%; text-align: center; padding-bottom: 10px; font-size: 0.75rem; }

.contact-section { padding: 70px 0; }
.contact-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.contact-info h3 { font-family: Georgia, 'Times New Roman', serif; font-size: 1.3rem; margin-bottom: 14px; }
.contact-info p { color: #8a8678; margin-bottom: 20px; }
.contact-info .detail { display: flex; gap: 10px; margin-bottom: 12px; }
.contact-info .detail .icon { font-size: 1rem; color: #c5a46e; min-width: 26px; }
.contact-info .detail .text { color: #e8e4d9; font-size: 0.88rem; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.72rem; color: #8a8678; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 6px; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 11px 14px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; color: #f5f3ec; font-size: 0.92rem; transition: border-color 0.3s ease; font-family: inherit; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: #c5a46e; }
.form-group textarea { min-height: 100px; resize: vertical; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .prod-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .grid-3 { grid-template-columns: 1fr; }
  nav { background: rgba(10,10,10,0.95); }
  .menu-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(10,10,10,0.98);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 20px;
    gap: 16px;
    display: none;
    border-bottom: 1px solid rgba(197,164,110,0.15);
    align-items: stretch;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    font-size: 1rem;
    padding: 8px 0;
    text-align: center;
  }
  .nav-links a::after { display: none; }
  .cta-btn {
    text-align: center;
    padding: 12px;
    font-size: 0.9rem;
  }
  
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-wrap { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2rem; }
  .hero p { font-size: 0.92rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn { text-align: center; padding: 14px 20px; }
  .btn-primary, .btn-secondary { width: 100%; }
  section { padding: 60px 0; }
}

@media (max-width: 480px) {
  .prod-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .footer-grid { grid-template-columns: 1fr; }
  .logo { font-size: 0.9rem; letter-spacing: 1.5px; }
  .menu-toggle span { width: 20px; height: 2px; }
  .hero h1 { font-size: 1.8rem; }
}
