*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
:root {
  --black:    #000000;
  --surface:  #0d0d0d;
  --surface2: #161616;
  --border:   #2a2a2a;
  --cream:    #d9d9d9;
  --muted:    #888;
  --gold:     #77721f;
  --gold-lt:  #b5a84a;
  --brown:    #a97c50;
  --white:    #f2ede6;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Jost', system-ui, sans-serif;
}
body {
  background: var(--black);
  color: var(--cream);
  font-family: var(--font-sans);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* Nav */
nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 5%; border-bottom: 1px solid var(--border);
  background: var(--black); position: sticky; top: 0; z-index: 50;
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img { width: 40px; height: 40px; border-radius: 50%; }
.nav-brand-main { display: block; font-family: var(--font-serif); font-size: 1.1rem; color: var(--white); }
.nav-brand-sub { display: block; font-size: 0.7rem; color: var(--muted); letter-spacing: 0.05em; }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a { font-size: 0.9rem; color: var(--cream); }
.nav-links a:hover { color: var(--gold-lt); }
.nav-cta { background: var(--gold); color: var(--black) !important; padding: 8px 18px; border-radius: 3px; font-weight: 500; }
.hamburger { display: none; background: none; border: none; cursor: pointer; }
@media (max-width: 860px) {
  .nav-links { display: none; }
  .hamburger { display: block; }
}

/* Breadcrumb */
.breadcrumb { padding: 20px 5% 0; font-size: 0.85rem; color: var(--muted); }
.breadcrumb a { color: var(--gold-lt); }
.breadcrumb a:hover { text-decoration: underline; }

/* Product hero */
.product-hero {
  display: grid; grid-template-columns: 380px 1fr; gap: 48px;
  padding: 32px 5% 60px; max-width: 1200px; margin: 0 auto;
}
@media (max-width: 760px) { .product-hero { grid-template-columns: 1fr; } }
.product-hero-img { border-radius: 6px; overflow: hidden; border: 1px solid var(--border); }
.product-hero h1 { font-family: var(--font-serif); font-size: 2.4rem; color: var(--white); margin-bottom: 16px; }
.product-hero p.lead { font-size: 1.05rem; color: var(--cream); opacity: 0.9; max-width: 60ch; }
.product-hero .cta-row { margin-top: 28px; display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  background: var(--gold); color: var(--black); padding: 12px 28px;
  border-radius: 3px; font-weight: 500; font-size: 0.95rem; display: inline-block;
}
.btn-primary:hover { background: var(--gold-lt); }

/* Options table */
.options-section { padding: 0 5% 60px; max-width: 1200px; margin: 0 auto; }
.options-section h2 { font-family: var(--font-serif); font-size: 1.6rem; color: var(--white); margin-bottom: 18px; }
table.options-table { width: 100%; border-collapse: collapse; }
table.options-table th, table.options-table td {
  text-align: left; padding: 12px 16px; border-bottom: 1px solid var(--border); font-size: 0.95rem;
}
table.options-table th { color: var(--muted); font-weight: 500; text-transform: uppercase; font-size: 0.75rem; letter-spacing: 0.05em; }
table.options-table td.price { color: var(--gold-lt); font-weight: 500; }

/* Related grid */
.related-section { padding: 0 5% 80px; max-width: 1200px; margin: 0 auto; }
.related-section h2 { font-family: var(--font-serif); font-size: 1.6rem; color: var(--white); margin-bottom: 18px; }
.related-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 20px; }
.related-card {
  background: var(--surface2); border: 1px solid var(--border); border-radius: 6px;
  padding: 16px; text-align: center; transition: border-color 0.2s;
}
.related-card:hover { border-color: var(--gold); }
.related-card span { display: block; font-size: 0.9rem; margin-top: 8px; }

/* Hub page */
.hub-hero { padding: 60px 5% 30px; max-width: 900px; margin: 0 auto; text-align: center; }
.hub-hero h1 { font-family: var(--font-serif); font-size: 2.6rem; color: var(--white); margin-bottom: 14px; }
.hub-hero p { color: var(--cream); opacity: 0.85; font-size: 1.05rem; }
.hub-section { padding: 20px 5% 0; max-width: 1200px; margin: 0 auto; }
.hub-section h2 { font-family: var(--font-serif); font-size: 1.5rem; color: var(--white); margin: 40px 0 18px; }
.hub-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 18px; }
.hub-card {
  background: var(--surface2); border: 1px solid var(--border); border-radius: 6px;
  padding: 18px; transition: border-color 0.2s;
}
.hub-card:hover { border-color: var(--gold); }
.hub-card h3 { font-family: var(--font-serif); font-size: 1.15rem; color: var(--white); margin-bottom: 6px; }
.hub-card p { font-size: 0.85rem; color: var(--muted); }

/* Footer (shared with main site) */
footer { padding: 60px 5% 30px; border-top: 1px solid var(--border); margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; max-width: 1200px; margin: 0 auto; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-logo { width: 48px; height: 48px; border-radius: 50%; margin-bottom: 14px; }
.footer-brand p { font-size: 0.85rem; color: var(--muted); max-width: 32ch; }
.footer-social { display: flex; gap: 16px; margin-top: 14px; }
.footer-social a { font-size: 0.85rem; color: var(--gold-lt); }
.footer-col h4 { font-family: var(--font-serif); color: var(--white); margin-bottom: 14px; font-size: 1rem; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { font-size: 0.85rem; color: var(--muted); }
.footer-col a:hover { color: var(--gold-lt); }
.footer-bottom {
  max-width: 1200px; margin: 40px auto 0; padding-top: 24px; border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; font-size: 0.8rem; color: var(--muted);
  flex-wrap: wrap; gap: 8px;
}

/* Placeholder media (used where no verified real product photo exists yet) */
.placeholder-hero, .placeholder-card {
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--surface2), var(--surface));
  border: 1px solid var(--border);
}
.placeholder-hero { aspect-ratio: 1; border-radius: 6px; }
.placeholder-hero span { font-size: 4.5rem; }
.placeholder-card { aspect-ratio: 1; border-radius: 4px; }
.placeholder-card span { font-size: 2.2rem; }
