/* ── Reset & Variables ─────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:    #0a0a0a;
  --dark:     #111111;
  --dark2:    #1a1a1a;
  --gold:     #c8a96e;
  --gold2:    #e8c87e;
  --white:    #ffffff;
  --text:     #1a1a1a;
  --text-mid: #555;
  --text-muted: #888;
  --bg-soft:  #f8f6f0;
  --border:   #e5e0d5;
  --radius:   8px;
  --radius-lg: 14px;
  --shadow:   0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.14);
  --max-w:    1200px;
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--white); line-height: 1.6; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ── Nav ──────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200,169,110,0.2);
}
.nav-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
  height: 64px; display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--white); }
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 28px; }
.nav-links a { color: rgba(255,255,255,0.75); font-size: 0.88rem; font-weight: 500; transition: color .2s; }
.nav-links a:hover { color: var(--gold); }

/* ── Hero ─────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  padding-top: 64px;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.5) 100%);
}
.hero-content {
  position: relative; z-index: 1;
  max-width: var(--max-w); margin: 0 auto; padding: 80px 24px;
  max-width: 700px; margin-left: 80px;
}
.hero-eyebrow {
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 16px;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: var(--white); line-height: 1.15; margin-bottom: 20px;
}
.hero-sub {
  font-size: 1.05rem; color: rgba(255,255,255,0.8);
  max-width: 520px; margin-bottom: 36px; line-height: 1.7;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── Buttons ──────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  background: var(--gold); color: var(--black);
  padding: 14px 28px; border-radius: 6px;
  font-weight: 700; font-size: 0.9rem;
  transition: background .2s, transform .15s;
}
.btn-primary:hover { background: var(--gold2); transform: translateY(-1px); }
.btn-primary.btn-lg { padding: 18px 40px; font-size: 1rem; }
.btn-ghost {
  display: inline-block;
  border: 2px solid rgba(255,255,255,0.4); color: var(--white);
  padding: 14px 28px; border-radius: 6px;
  font-weight: 600; font-size: 0.9rem;
  transition: border-color .2s, background .2s;
}
.btn-ghost:hover { border-color: var(--gold); background: rgba(200,169,110,0.1); }

/* ── Trust Bar ────────────────────────────────────── */
.trust-bar {
  background: var(--dark2);
  border-top: 1px solid rgba(200,169,110,0.15);
  border-bottom: 1px solid rgba(200,169,110,0.15);
}
.trust-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 14px 24px;
  display: flex; gap: 32px; justify-content: center; flex-wrap: wrap;
}
.trust-inner span { color: rgba(255,255,255,0.75); font-size: 0.83rem; font-weight: 500; }

/* ── Layout ───────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section.bg-dark { background: var(--dark); }
.section.bg-soft { background: var(--bg-soft); }
.section-header { text-align: center; margin-bottom: 48px; }
.eyebrow {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 10px;
}
.heading-lg {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem); line-height: 1.2;
}
.bg-dark .heading-lg { color: var(--white); }

/* ── Category Grid ────────────────────────────────── */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.cat-card {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border); background: var(--white);
  box-shadow: var(--shadow); transition: transform .2s, box-shadow .2s;
  display: block;
}
.cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.cat-card-img {
  height: 200px; background-size: cover; background-position: center;
}
.cat-card-body { padding: 20px; }
.cat-badge {
  display: inline-block; background: #fff8e8; color: #8a6000;
  font-size: 0.72rem; font-weight: 700; padding: 3px 10px;
  border-radius: 20px; margin-bottom: 10px;
  border: 1px solid #e8d080;
}
.cat-card-body h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.cat-card-body p { font-size: 0.88rem; color: var(--text-mid); margin-bottom: 14px; line-height: 1.6; }
.cat-cta { color: var(--gold); font-weight: 700; font-size: 0.88rem; }

/* ── Feature Split ────────────────────────────────── */
.feature-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.feature-split.reverse { direction: rtl; }
.feature-split.reverse > * { direction: ltr; }
.feature-img img {
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
}
.feature-body h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem); margin-bottom: 16px; line-height: 1.25;
}
.bg-dark .feature-body h2 { color: var(--white); }
.bg-dark .feature-body p { color: rgba(255,255,255,0.75); }
.feature-body p { font-size: 0.95rem; color: var(--text-mid); margin-bottom: 20px; line-height: 1.75; }
.feature-list { list-style: none; margin-bottom: 28px; }
.feature-list li {
  font-size: 0.9rem; padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.8);
}
.section:not(.bg-dark) .feature-list li {
  border-bottom-color: var(--border);
  color: var(--text-mid);
}

/* ── Why Grid ─────────────────────────────────────── */
.why-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px;
}
.why-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px 24px;
  box-shadow: var(--shadow);
}
.why-icon { font-size: 2rem; margin-bottom: 12px; }
.why-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.why-card p { font-size: 0.87rem; color: var(--text-mid); line-height: 1.65; }

/* ── CTA Section ──────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2412 100%);
  padding: 80px 24px; text-align: center;
  border-top: 1px solid rgba(200,169,110,0.2);
  border-bottom: 1px solid rgba(200,169,110,0.2);
}
.cta-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem); color: var(--white); margin-bottom: 14px;
}
.cta-section p { color: rgba(255,255,255,0.7); font-size: 1rem; margin-bottom: 32px; }

/* ── Footer ───────────────────────────────────────── */
.footer { background: var(--black); padding: 60px 24px 0; }
.footer-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1fr auto; gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 0.87rem; margin-top: 10px; max-width: 280px; }
.footer-links { display: flex; gap: 60px; }
.footer-links div { display: flex; flex-direction: column; gap: 10px; }
.footer-links h4 { color: var(--white); font-size: 0.82rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 4px; }
.footer-links a { color: rgba(255,255,255,0.5); font-size: 0.87rem; transition: color .2s; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  max-width: var(--max-w); margin: 0 auto;
  padding: 20px 0; text-align: center;
}
.footer-bottom p { color: rgba(255,255,255,0.3); font-size: 0.78rem; }

/* ── Category Page ────────────────────────────────── */
.page-hero {
  position: relative; padding: 140px 24px 80px;
  background: var(--dark);
  text-align: center;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.3;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem); color: var(--white); margin-bottom: 14px;
}
.page-hero p { color: rgba(255,255,255,0.7); font-size: 1rem; max-width: 560px; margin: 0 auto 28px; }

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.product-card {
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; background: var(--white); box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s; display: block;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.product-card-img { height: 220px; background-size: cover; background-position: center; }
.product-card-body { padding: 20px; }
.product-card-body h3 { font-size: 0.98rem; font-weight: 700; margin-bottom: 8px; line-height: 1.4; }
.product-card-body p { font-size: 0.85rem; color: var(--text-mid); margin-bottom: 14px; line-height: 1.6; }
.product-card-footer { display: flex; justify-content: space-between; align-items: center; }
.product-price { font-size: 1rem; font-weight: 700; color: var(--text); }
.product-btn {
  background: var(--gold); color: var(--black);
  padding: 8px 16px; border-radius: 6px;
  font-weight: 700; font-size: 0.82rem;
  transition: background .2s;
}
.product-btn:hover { background: var(--gold2); }

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 768px) {
  .hero-content { margin-left: 0; padding: 60px 24px; }
  .feature-split, .feature-split.reverse { grid-template-columns: 1fr; direction: ltr; gap: 32px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-links { flex-wrap: wrap; gap: 32px; }
  .nav-links { display: none; }
}
