@import url('https://fonts.googleapis.com/css2?family=Jost:wght@400;500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --jet-black: #0B0B0B;
  --charcoal: #1C1C1C;
  --charcoal-2: #161616;
  --gold: #D4B378;
  --gold-bright: #E8C989;
  --gold-dim: #9C8358;
  --gold-soft: rgba(212, 179, 120, 0.14);
  --off-white: #F8F8F6;
  --dark-grey: #444444;
  --border: rgba(255,255,255,0.10);
  --border-strong: rgba(255,255,255,0.22);
  --radius: 10px;
  --font-display: 'Jost', sans-serif;
  --font-body: 'Inter', sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--jet-black);
  color: var(--off-white);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0;
  margin: 0 0 16px;
  text-wrap: balance;
  color: var(--off-white);
}

h1 { font-size: clamp(2.4rem, 5.4vw, 3.8rem); line-height: 1.08; font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); line-height: 1.15; }
h3 { font-size: 1.1rem; font-weight: 700; }

p { margin: 0 0 16px; color: rgba(248,248,246,0.68); }

.eyebrow {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  display: block;
}

/* ---------- Layout ---------- */
.wrap { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.section { padding: 72px 0; }
.section-tight { padding: 48px 0; }

/* Scroll-reveal — respects reduced-motion */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity 0.5s ease, transform 0.5s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Promo bar ---------- */
.promo-bar {
  background: var(--gold);
  color: var(--jet-black);
  text-align: center;
  padding: 9px 0;
  overflow: hidden;
}
.promo-bar .wrap { display: flex; justify-content: center; gap: 36px; flex-wrap: wrap; }
.promo-bar span {
  font-family: var(--font-display);
  font-size: 12px; font-weight: 700; letter-spacing: 0.04em;
}

/* ---------- Nav ---------- */
.site-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(11,11,11,0.97);
  border-bottom: 1px solid var(--border-strong);
}
.site-nav .wrap {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px; padding-bottom: 14px;
}
.site-nav .brand { display: flex; align-items: center; gap: 10px; }
.site-nav .brand img { height: 40px; width: auto; }
.site-nav .links { display: flex; align-items: center; gap: 30px; }
.site-nav .links a {
  font-family: var(--font-display);
  font-size: 13px; font-weight: 600; letter-spacing: 0.02em;
  color: rgba(248,248,246,0.85);
  transition: color 0.2s;
}
.site-nav .links a:hover { color: var(--gold); }
.site-nav .cart-link { position: relative; }
.site-nav .cart-count {
  position: absolute; top: -9px; right: -14px;
  background: var(--gold); color: var(--jet-black);
  font-size: 10px; font-weight: 800; font-family: var(--font-body);
  width: 17px; height: 17px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-display);
  font-size: 14px; font-weight: 700; letter-spacing: 0.01em;
  padding: 16px 34px;
  border-radius: var(--radius);
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.15s ease, background 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s;
}
.btn:active { transform: scale(0.97); }
.btn-gold {
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  color: var(--jet-black);
  box-shadow: 0 6px 20px rgba(212,179,120,0.28);
}
.btn-gold:hover { box-shadow: 0 8px 26px rgba(212,179,120,0.42); transform: translateY(-1px); }
.btn-outline {
  background: transparent; color: var(--off-white); border-color: var(--border-strong);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-block { width: 100%; }
.btn[disabled] { opacity: 0.5; cursor: not-allowed; }

/* ---------- Cards ---------- */
.card {
  background: var(--charcoal);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 28px;
}

/* ---------- Badges ---------- */
.badge {
  display: inline-flex; align-items: center;
  font-family: var(--font-display); font-size: 11px; font-weight: 700; letter-spacing: 0.04em;
  padding: 4px 10px; border-radius: 5px;
}
.badge-new { background: var(--gold); color: var(--jet-black); }
.badge-price {
  font-family: var(--font-display); font-weight: 800; font-size: 15px; color: var(--gold);
}

/* ---------- Trust grid (icon cards) ---------- */
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.trust-item {
  background: var(--charcoal);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 26px 22px;
  text-align: center;
}
.trust-item .icon {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--gold-soft); border: 1px solid rgba(212,179,120,0.4);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.trust-item .icon svg { width: 22px; height: 22px; }
.trust-item h3 { font-size: 15px; margin-bottom: 6px; }
.trust-item p { font-size: 13px; margin-bottom: 0; }

/* ---------- FAQ ---------- */
.faq-item { border-bottom: 1px solid var(--border-strong); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 4px; cursor: pointer;
  font-family: var(--font-display); font-weight: 600; font-size: 15px;
}
.faq-q .plus { font-size: 20px; color: var(--gold); transition: transform 0.25s; }
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item.open .faq-a { max-height: 300px; }
.faq-a p { padding: 0 4px 20px; font-size: 14px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--charcoal-2);
  border-top: 1px solid var(--border-strong);
  padding: 48px 0 28px;
  color: rgba(248,248,246,0.5);
  font-size: 13px;
}
.site-footer .wrap { display: flex; flex-wrap: wrap; gap: 24px; justify-content: space-between; align-items: center; }
.site-footer a:hover { color: var(--gold); }

/* ---------- Forms ---------- */
label { display: block; font-size: 12px; font-weight: 700; letter-spacing: 0.03em; text-transform: uppercase; color: rgba(248,248,246,0.55); margin-bottom: 6px; }
input[type="text"], input[type="email"], input[type="tel"], select, textarea {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 13px 14px;
  color: var(--off-white);
  font-family: var(--font-body);
  font-size: 14px;
  margin-bottom: 18px;
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--gold); }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.muted { color: rgba(248,248,246,0.5); }
.gold { color: var(--gold); }

@media (max-width: 720px) {
  .section { padding: 48px 0; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .promo-bar .wrap { gap: 18px; }
  .promo-bar span:nth-child(n+3) { display: none; }
}
@media (max-width: 860px) {
  .site-nav .links { display: none; }
}
