@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Sans:wght@300;400;500&display=swap');

* { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold: #C9A84C; --gold-light: #E8D49A; --gold-dark: #8C6E2A;
  --ink: #0E0E0E; --ink-soft: #3A3A3A; --surface: #F8F6F1;
  --border: rgba(201,168,76,0.25); --white: #FFFFFF;
  --serif: 'DM Serif Display', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
}

body { font-family: var(--sans); background: var(--surface); color: var(--ink); line-height: 1.6; }

/* NAV */
nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 2.5rem; border-bottom: 0.5px solid var(--border);
  background: var(--white); position: sticky; top: 0; z-index: 100;
}
.logo { font-family: var(--serif); font-size: 1.5rem; letter-spacing: -0.02em; color: var(--ink); text-decoration: none; }
.logo span { color: var(--gold); }
.logo-tld { font-family: var(--sans); font-size: 0.7rem; color: var(--ink-soft); font-weight: 300; }
.nav-links { display: flex; gap: 2rem; font-size: 0.875rem; color: var(--ink-soft); }
.nav-links a { text-decoration: none; color: inherit; }
.nav-links a:hover { color: var(--gold-dark); }
.nav-links a.active { color: var(--ink); font-weight: 600; }
.nav-cta { background: var(--ink); color: var(--white); border: none; padding: 0.6rem 1.4rem; font-family: var(--sans); font-size: 0.875rem; cursor: pointer; text-decoration: none; display: inline-block; }
.nav-cta:hover { background: var(--ink-soft); }

/* MARQUEE */
.marquee-bar { background: var(--gold); padding: 0.6rem 0; overflow: hidden; border-top: 0.5px solid var(--gold-dark); border-bottom: 0.5px solid var(--gold-dark); }
.marquee-track { display: flex; gap: 3rem; width: max-content; animation: marquee 22s linear infinite; }
.marquee-item { font-size: 0.75rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink); white-space: nowrap; }
.marquee-sep { color: var(--ink); opacity: 0.4; }
@keyframes marquee { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* SECTION LABELS */
.section-label { font-size: 0.75rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 0.75rem; }
.section-title { font-family: var(--serif); font-size: clamp(2rem,3vw,2.75rem); letter-spacing: -0.02em; margin-bottom: 2rem; }

/* PAGE HEADER */
.page-header { background: var(--white); border-bottom: 0.5px solid var(--border); padding: 4rem 2.5rem 3rem; }
.page-header h1 { font-family: var(--serif); font-size: clamp(2.5rem,4vw,3.5rem); letter-spacing: -0.02em; margin-bottom: 0.75rem; }
.page-header p { font-size: 1.0625rem; color: var(--ink-soft); font-weight: 300; max-width: 520px; }

/* FOOTER */
footer { padding: 2rem 2.5rem; background: var(--white); border-top: 0.5px solid var(--border); display: flex; align-items: center; justify-content: space-between; font-size: 0.8125rem; color: var(--ink-soft); flex-wrap: wrap; gap: 1rem; }
footer a { text-decoration: none; color: inherit; }
footer a:hover { color: var(--gold-dark); }

/* BUTTONS */
.btn-primary { background: var(--ink); color: var(--white); border: none; padding: 0.875rem 2rem; font-family: var(--sans); font-size: 0.9375rem; cursor: pointer; font-weight: 500; text-decoration: none; display: inline-block; }
.btn-outline { background: transparent; color: var(--ink); border: 0.5px solid rgba(14,14,14,0.4); padding: 0.875rem 2rem; font-family: var(--sans); font-size: 0.9375rem; cursor: pointer; text-decoration: none; display: inline-block; }
.btn-gold { background: var(--gold); color: var(--ink); border: none; padding: 0.875rem 2rem; font-family: var(--sans); font-size: 0.9375rem; cursor: pointer; font-weight: 500; text-decoration: none; display: inline-block; }
.btn-gold:hover { background: var(--gold-light); }

/* BUY/DON'T BUY */
.buy-dot-yes { width:6px;height:6px;border-radius:50%;background:#4CAF82;flex-shrink:0;margin-top:7px; }
.buy-dot-no { width:6px;height:6px;border-radius:50%;background:#E24B4A;flex-shrink:0;margin-top:7px; }

/* FINE PRINT */
.fine-print { border-top: 0.5px solid rgba(255,255,255,0.08); margin-top: 2rem; padding-top: 1.5rem; }
.fine-print-title { font-size: 0.7rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 1rem; }
.fine-print-section { margin-bottom: 1.1rem; }
.fine-print-section:last-child { margin-bottom: 0; }
.fine-print-section-title { font-size: 0.68rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(201,168,76,0.5); margin-bottom: 0.4rem; }
.fine-print p { font-size: 0.74rem; color: rgba(255,255,255,0.3); line-height: 1.7; margin-bottom: 0.4rem; }
.fine-print p:last-child { margin-bottom: 0; }
.fine-print p.hl { color: rgba(201,168,76,0.6); border-left: 1.5px solid rgba(201,168,76,0.3); padding-left: 0.6rem; }

/* REVIEWS */
.reviews-grid { columns: 3; column-gap: 1.25rem; }
.review-card { break-inside: avoid; margin-bottom: 1.25rem; padding: 1.4rem 1.5rem; border: 0.5px solid var(--border); background: var(--surface); display: flex; flex-direction: column; gap: 0.65rem; }
.review-card.featured { background: var(--ink); border-color: rgba(201,168,76,0.35); }
.review-top { display: flex; align-items: center; justify-content: space-between; }
.review-stars { color: var(--gold); font-size: 0.65rem; letter-spacing: 2px; }
.review-badge { font-size: 0.62rem; color: var(--gold-dark); background: #FFF3CD; padding: 2px 7px; border-radius: 10px; font-weight: 500; }
.review-card.featured .review-badge { background: rgba(201,168,76,0.15); color: var(--gold-light); }
.review-quote { font-family: var(--serif); font-size: 1rem; line-height: 1.55; color: var(--ink); }
.review-card.featured .review-quote { color: var(--white); }
.review-item { font-size: 0.7rem; color: var(--ink-soft); font-style: italic; line-height: 1.5; padding-top: 0.5rem; border-top: 0.5px solid var(--border); }
.review-card.featured .review-item { color: rgba(255,255,255,0.38); border-top-color: rgba(255,255,255,0.08); }
.review-seller { font-size: 0.68rem; color: var(--ink-soft); opacity: 0.55; }
.review-card.featured .review-seller { color: rgba(255,255,255,0.3); }

/* HAMBURGER */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px; z-index: 200;
}
.hamburger span {
  display: block; width: 22px; height: 1.5px; background: var(--ink);
  transition: transform 0.25s, opacity 0.25s;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* MOBILE DRAWER */
.mobile-nav {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: var(--white); z-index: 150; flex-direction: column;
  padding: 6rem 2rem 2rem; overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--serif); font-size: 1.75rem; color: var(--ink);
  text-decoration: none; padding: 0.75rem 0;
  border-bottom: 0.5px solid var(--border); letter-spacing: -0.01em;
}
.mobile-nav a:hover, .mobile-nav a.active { color: var(--ink); font-weight: 600; }
.mobile-nav-cta {
  margin-top: 2rem; background: var(--ink); color: var(--white) !important;
  padding: 1rem; font-family: var(--sans) !important; font-size: 1rem !important;
  font-weight: 500; text-align: center; display: block; border: none;
}

@media (max-width: 900px) {
  nav { padding: 1rem 1.25rem; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .page-header { padding: 3rem 1.25rem 2rem; }
  .reviews-grid { columns: 1; }
  footer { padding: 1.5rem 1.25rem; flex-direction: column; gap: 0.75rem; }
  footer div:last-child { display: flex; flex-wrap: wrap; gap: 1rem; }
}
@media (min-width: 600px) and (max-width: 900px) { .reviews-grid { columns: 2; } }
