:root {
  --gold: #c9a96e;
  --gold-dim: #8a7449;
  --rose: #c67b7b;
  --bg: #0f0c0a;
  --bg-card: #1a1612;
  --bg-elevated: #241e18;
  --text: #f5f0eb;
  --text-muted: #8a7e6f;
  --border: rgba(201, 169, 110, 0.15);
  --border-strong: rgba(201, 169, 110, 0.3);
  --accent: #8b1a3a;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --r: 4px;
  --shadow: 0 8px 24px rgba(0,0,0,0.4);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { background: var(--bg); color: var(--text); font-family: var(--font-body); font-size: 16px; line-height: 1.65; overflow-x: hidden; }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--bg-elevated); border-radius: 3px; }
::selection { background: var(--gold); color: var(--bg); }
a { color: var(--gold); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold-dim); }
img { max-width: 100%; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 clamp(16px, 4vw, 40px); }
.section { padding: clamp(50px, 8vw, 100px) 0; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.15; letter-spacing: -0.02em; }
h1 { font-size: clamp(2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.75rem, 4vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.75rem); }

.eyebrow { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; display: inline-block; }
.muted { color: var(--text-muted); }
.center { text-align: center; }

/* Header */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 1rem clamp(16px, 4vw, 40px); display: flex; align-items: center; justify-content: space-between; background: transparent; transition: all 0.4s; }
.site-header.scrolled { background: rgba(15,12,10,0.85); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); padding: 0.75rem clamp(16px, 4vw, 40px); }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.logo-text { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; color: var(--text); letter-spacing: 0.02em; }
.logo-text small { display: block; font-family: var(--font-body); font-size: 0.5rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); }

.nav { display: flex; align-items: center; gap: 1.5rem; }
.nav a { font-size: 0.8rem; font-weight: 500; color: var(--text-muted); transition: color 0.2s; }
.nav a:hover { color: var(--gold); }
.nav a.active { color: var(--gold); }

.cart-btn { background: none; border: none; cursor: pointer; color: var(--text-muted); font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; display: flex; align-items: center; gap: 6px; transition: color 0.2s; }
.cart-btn:hover { color: var(--gold); }
.cart-count { background: var(--accent); color: var(--text); width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.65rem; font-weight: 700; position: absolute; margin-left: 20px; margin-top: -8px; }

.menu-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.menu-toggle span { width: 24px; height: 1px; background: var(--text); transition: 0.2s; }
.menu-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Hero */
.hero { min-height: 90vh; display: flex; align-items: center; justify-content: center; text-align: center; position: relative; overflow: hidden; background: radial-gradient(circle at 50% 30%, rgba(139,26,58,0.15) 0%, transparent 50%), var(--bg); }
.hero-content { max-width: 700px; padding: 0 20px; animation: fadeInUp 1s both; }
.hero img.hero-logo { width: 120px; height: 120px; border-radius: 50%; margin: 0 auto 2rem; box-shadow: var(--shadow); }
.hero h1 { margin-bottom: 1.5rem; }
.hero p { font-size: 1.15rem; color: var(--text-muted); margin-bottom: 2.5rem; max-width: 450px; margin-left: auto; margin-right: auto; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 32px; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; border: none; cursor: pointer; transition: all 0.4s; text-decoration: none; white-space: nowrap; }
.btn-gold { background: var(--gold); color: var(--bg); }
.btn-gold:hover { background: var(--gold-dim); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-outline { background: transparent; color: var(--text); border: 1px solid var(--border-strong); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-sm { padding: 10px 24px; font-size: 0.7rem; }
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Product Grid */
.section-head { text-align: center; margin-bottom: 3rem; }
.section-head h2 { margin-bottom: 0.75rem; }
.section-head p { color: var(--text-muted); max-width: 450px; margin: 0 auto; }

.filters { display: flex; gap: 0.5rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2.5rem; }
.filter-pill { padding: 8px 20px; font-size: 0.75rem; font-weight: 500; letter-spacing: 0.1em; background: transparent; border: 1px solid var(--border); color: var(--text-muted); cursor: pointer; border-radius: var(--r); transition: all 0.2s; text-transform: uppercase; }
.filter-pill:hover { border-color: var(--border-strong); color: var(--text); }
.filter-pill.active { background: var(--gold); color: var(--bg); border-color: var(--gold); }

.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: clamp(16px, 3vw, 32px); }
.product-card { text-decoration: none; color: inherit; transition: transform 0.3s; cursor: pointer; }
.product-card:hover { transform: translateY(-6px); }
.product-image { position: relative; aspect-ratio: 1; overflow: hidden; background: var(--bg-card); border-radius: var(--r); margin-bottom: 0.75rem; border: 1px solid var(--border); }
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s; }
.product-card:hover .product-image img { transform: scale(1.05); }
.product-badge { position: absolute; top: 10px; left: 10px; background: var(--accent); color: var(--text); padding: 3px 10px; font-size: 0.6rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; border-radius: 2px; z-index: 2; }
.product-badge.gold { background: var(--gold); color: var(--bg); }
.product-info { padding: 0 4px; }
.product-name { font-family: var(--font-display); font-size: 1.1rem; font-weight: 500; margin-bottom: 2px; color: var(--text); }
.product-category { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 6px; }
.product-price { font-family: var(--font-mono); font-size: 0.9rem; font-weight: 600; color: var(--gold); }

/* Split section */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 5vw, 60px); align-items: center; }
.split-image img { width: 100%; border-radius: var(--r); border: 1px solid var(--border); }

/* Payment row */
.pay-row { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; padding: 0 4px; }
.pay-chip { font-family: var(--font-body) !important; font-size: 0.7rem !important; letter-spacing: 0.05em; color: var(--text-muted) !important; background: none !important; border: 1px solid var(--border) !important; padding: 6px 14px !important; cursor: pointer; text-decoration: none !important; white-space: nowrap; flex-shrink: 0; transition: all 0.2s; border-radius: var(--r); }
.pay-chip:hover { border-color: var(--gold) !important; color: var(--gold) !important; }

/* Newsletter */
.newsletter { text-align: center; padding: clamp(50px, 8vw, 80px) 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--bg-card); }
.newsletter h2 { margin-bottom: 0.75rem; }
.newsletter p { color: var(--text-muted); margin-bottom: 1.5rem; }
.newsletter form { display: flex; gap: 0; max-width: 400px; margin: 0 auto; }
.newsletter input { flex: 1; padding: 12px 18px; background: var(--bg-elevated); border: 1px solid var(--border); border-right: none; color: var(--text); font-family: var(--font-body); font-size: 0.9rem; outline: none; }
.newsletter input:focus { border-color: var(--gold); }
.newsletter button { padding: 12px 24px; background: var(--gold); color: var(--bg); border: none; font-weight: 700; font-size: 0.8rem; cursor: pointer; letter-spacing: 0.1em; text-transform: uppercase; }
.newsletter button:hover { background: var(--gold-dim); }

/* Footer */
.site-footer { padding: clamp(40px, 6vw, 60px) 0 24px; border-top: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: clamp(24px, 4vw, 40px); margin-bottom: 40px; }
.footer-brand .logo-text { font-size: 1.5rem; margin-bottom: 0.75rem; }
.footer-brand p { color: var(--text-muted); font-size: 0.85rem; max-width: 280px; }
.footer-col h4 { font-family: var(--font-body); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a { color: var(--text-muted); font-size: 0.8rem; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 1.5rem; border-top: 1px solid var(--border); font-size: 0.7rem; color: var(--text-muted); }
.footer-bottom a { color: var(--text-muted); }

/* Animations */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.fade-up { animation: fadeInUp 0.8s both; }
.fade-in { animation: fadeIn 1s both; }
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s, transform 0.8s; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 720px) {
  .nav { display: none; }
  .menu-toggle { display: flex; }
  .nav.mobile-open { display: flex; flex-direction: column; position: absolute; top: 65px; left: 16px; right: 16px; background: var(--bg-card); padding: 1rem; border: 1px solid var(--border); border-radius: var(--r); gap: 0.75rem; z-index: 999; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
  .split { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
}
@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
}
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; } }
