/* ── SHARED STYLES ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg:       #0a0815;
  --bg2:      #110e20;
  --gold:     #c9a84c;
  --gold-dim: #7a6330;
  --cream:    #e8dfc8;
  --text:     #d4cfc8;
  --border:   rgba(201,168,76,0.2);
}
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 30px;
  line-height: 1.7;
}
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 4rem;
  background: rgba(10,8,21,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-decoration: none;
}
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: var(--text);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.container { max-width: 1100px; margin: 0 auto; }
.section-label {
  font-family: 'Cinzel', serif;
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-dim);
  display: block;
  margin-bottom: 0.8rem;
}
.section-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 1rem;
}
.section-divider {
  width: 60px; height: 1px;
  background: var(--gold);
  margin-bottom: 2.5rem;
  opacity: 0.6;
}
.btn {
  display: inline-block;
  font-family: 'Cinzel', serif;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--gold);
  padding: 0.85rem 2.4rem;
  text-decoration: none;
  border: 1px solid var(--gold);
  transition: background 0.3s, color 0.3s;
}
.btn:hover { background: transparent; color: var(--gold); }
.btn-outline { background: transparent; color: var(--gold); }
.btn-outline:hover { background: var(--gold); color: var(--bg); }
/* PAGE HERO */
.page-hero {
  padding: 10rem 2rem 5rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 0%, rgba(201,168,76,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-label {
  font-family: 'Cinzel', serif;
  font-size: 0.68rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-dim);
  display: block;
  margin-bottom: 1rem;
}
.page-hero-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 1rem;
}
.page-hero-sub {
  font-style: italic;
  color: var(--text);
  opacity: 0.75;
  max-width: 500px;
  margin: 0 auto;
  font-size: 1.7rem;
}
/* PRODUCTS */
.products-section { padding: 5rem 2rem; }
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.product-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  padding: 2rem;
  transition: border-color 0.3s, transform 0.3s;
  display: flex; flex-direction: column;
}
.product-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 1.2rem;
  border: 1px solid var(--border);
}
.product-card:hover { border-color: var(--gold-dim); transform: translateY(-4px); }
.product-tag {
  font-family: 'Cinzel', serif;
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 1rem;
}
.product-name {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  color: var(--cream);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}
.product-desc { font-size: 1.1rem; color: var(--text); margin-bottom: 1.5rem; flex: 1; line-height: 2; }
.product-price { font-family: 'Cinzel', serif; font-size: 1rem; color: var(--gold); margin-bottom: 1.2rem; }
.product-link {
  display: inline-block;
  font-family: 'Cinzel', serif;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid var(--gold-dim);
  padding-bottom: 2px;
  transition: border-color 0.3s, color 0.3s;
}
.product-link:hover { color: var(--cream); border-color: var(--cream); }
/* FOOTER */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 3rem 2rem;
  text-align: center;
}
.footer-logo { font-family: 'Cinzel', serif; font-size: 1.2rem; color: var(--gold); letter-spacing: 0.3em; margin-bottom: 0.5rem; }
.footer-sub { font-size: 0.8rem; color: var(--gold-dim); letter-spacing: 0.2em; margin-bottom: 1.5rem; }
.footer-disclaimer { font-size: 0.78rem; color: var(--gold-dim); opacity: 0.6; max-width: 560px; margin: 0 auto 1rem; }
.footer-copy { font-size: 0.75rem; color: var(--gold-dim); opacity: 0.4; }
/* RESPONSIVE */
@media (max-width: 768px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { gap: 1.5rem; }
}
@media (max-width: 580px) {
  .nav-links { display: none; }
}
