/* ─── Design Tokens ──────────────────────────────────── */
:root {
  --forest:  #1e2d1e;
  --mid:     #4a6741;
  --accent:  #9a7a20;
  --gold:    #9a7a20;
  --bg:      #f5f0e8;
  --paper:   #ede6d8;
  --dark:    #2a2010;
  --muted:   #7a7060;
  --border:  #d0c8b8;
  --white:   #ffffff;
  --cream:   #fffdf5;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-ui:      'Raleway', 'Helvetica Neue', sans-serif;

  --radius:  3px;
  --shadow:  0 2px 12px rgba(30,20,10,0.10);
  --shadow-lg: 0 8px 40px rgba(30,20,10,0.18);
}

/* ─── Reset ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--dark);
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ─── Typography ─────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.15; color: var(--dark); }
h1 { font-size: clamp(36px, 5vw, 58px); font-weight: 900; }
h2 { font-size: clamp(26px, 3.5vw, 40px); font-weight: 700; }
h3 { font-size: clamp(20px, 2.5vw, 28px); font-weight: 700; }
h4 { font-size: 18px; font-weight: 600; }
p  { color: var(--muted); font-size: 15px; line-height: 1.75; }
.label { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; font-weight: 600; font-family: var(--font-ui); color: var(--muted); }
.price-display { font-family: var(--font-display); font-size: 36px; font-weight: 700; color: var(--accent); }

/* ─── Buttons ────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 13px 28px; font-family: var(--font-ui); font-size: 13px;
  font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  border: 2px solid transparent; border-radius: var(--radius);
  cursor: pointer; transition: all 0.18s ease; white-space: nowrap;
}
.btn-primary   { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn-primary:hover { background: #8a5c2c; border-color: #8a5c2c; }
.btn-gold      { background: var(--gold); color: #fff; border-color: var(--gold); }
.btn-gold:hover { background: #7a6218; border-color: #7a6218; }
.btn-outline   { background: transparent; color: var(--dark); border-color: var(--border); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-outline-light { background: transparent; color: rgba(255,255,255,0.8); border-color: rgba(255,255,255,0.4); }
.btn-outline-light:hover { border-color: #fff; color: #fff; }
.btn-forest    { background: var(--forest); color: #fff; border-color: var(--forest); }
.btn-forest:hover { background: #162214; }
.btn-sm        { padding: 9px 20px; font-size: 12px; }
.btn-lg        { padding: 16px 36px; font-size: 14px; }

/* ─── Nav ────────────────────────────────────────────── */
.site-nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--forest);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  height: 62px; display: flex; align-items: center;
  padding: 0 5vw; gap: 32px;
}
.site-nav .logo {
  font-family: var(--font-display); font-size: 20px; font-weight: 700;
  color: var(--bg); letter-spacing: 0.5px; white-space: nowrap;
}
.site-nav .logo span { color: #c9a860; }
.site-nav .nav-links { display: flex; gap: 28px; flex: 1; justify-content: center; }
.site-nav .nav-links a {
  font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.6); font-weight: 600;
  transition: color 0.15s;
}
.site-nav .nav-links a:hover { color: #fff; }
.site-nav .nav-cta { margin-left: auto; }

/* ─── Trust Bar ──────────────────────────────────────── */
.trust-bar {
  background: var(--mid);
  display: flex;
}
.trust-bar .trust-item {
  flex: 1; padding: 11px 8px; text-align: center;
  font-size: 12px; letter-spacing: 1px; text-transform: uppercase;
  color: #c8e0c0; font-weight: 600; font-family: var(--font-ui);
  border-right: 1px solid rgba(255,255,255,0.12);
}
.trust-bar .trust-item:last-child { border-right: none; }

/* ─── Section Layout ─────────────────────────────────── */
.section { padding: 72px 5vw; }
.section-sm { padding: 48px 5vw; }
.section-dark { background: var(--forest); color: var(--bg); }
.section-paper { background: var(--paper); }
.section-title { margin-bottom: 8px; }
.section-intro { max-width: 560px; }
.section-header { margin-bottom: 48px; }

/* ─── Product Cards ──────────────────────────────────── */
.product-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.product-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
  cursor: pointer; display: flex; flex-direction: column;
}
.product-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.product-card.metallic { background: var(--cream); border-color: #d4c878; }
.product-card-img {
  background: repeating-linear-gradient(45deg, #ddd 0 2px, #ede9e4 2px 12px);
  height: 200px; display: flex; align-items: center; justify-content: center;
  color: #aaa; font-size: 13px; font-family: var(--font-ui);
}
.product-card.metallic .product-card-img {
  background: repeating-linear-gradient(135deg, #e8d870 0 2px, #fff8c0 2px 14px);
}
.product-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.product-card-tag {
  display: inline-block; padding: 3px 10px; border-radius: 20px;
  font-size: 11px; letter-spacing: 1px; font-weight: 700; text-transform: uppercase;
  background: var(--accent); color: #fff; margin-bottom: 10px;
}
.product-card-tag.gold { background: var(--gold); }
.product-card-title { font-family: var(--font-display); font-size: 24px; font-weight: 700; margin-bottom: 6px; }
.product-card-sub { font-size: 13px; color: var(--muted); margin-bottom: 14px; line-height: 1.6; }
.product-card-exclusive { font-size: 11px; letter-spacing: 2px; color: var(--gold); text-transform: uppercase; font-weight: 700; margin-bottom: 14px; }
.product-card-price { font-family: var(--font-display); font-size: 28px; color: var(--accent); font-weight: 700; margin-bottom: 20px; }
.product-card-price.gold-price { color: var(--gold); }
.product-card-price span { font-size: 15px; color: var(--muted); font-weight: 400; font-family: var(--font-ui); }
.product-card .btn { margin-top: auto; width: 100%; }

/* ─── Steps ──────────────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.step { text-align: center; padding: 8px; }
.step-num {
  width: 44px; height: 44px; border-radius: 50%;
  border: 2px solid var(--accent); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 20px; font-weight: 700;
  margin: 0 auto 14px;
}
.step-title { font-family: var(--font-display); font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.step-desc { font-size: 13px; color: var(--muted); }

/* ─── FAQ ────────────────────────────────────────────── */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; text-align: left; padding: 18px 0;
  font-family: var(--font-display); font-size: 18px; font-weight: 600;
  background: transparent; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  color: var(--dark);
}
.faq-q .faq-icon { color: var(--accent); font-size: 22px; flex-shrink: 0; transition: transform 0.2s; }
.faq-q.open .faq-icon { transform: rotate(45deg); }
.faq-a { display: none; padding-bottom: 18px; font-size: 15px; color: var(--muted); line-height: 1.8; }
.faq-a.open { display: block; }

/* ─── Form ───────────────────────────────────────────── */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; font-weight: 700; margin-bottom: 8px; color: var(--dark); }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 12px 16px; font-family: var(--font-ui); font-size: 15px;
  background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius);
  color: var(--dark); transition: border-color 0.15s; outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--accent); }
.form-textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ─── Footer ─────────────────────────────────────────── */
.site-footer {
  background: var(--forest); color: rgba(255,255,255,0.65);
  padding: 56px 5vw 32px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-logo { font-family: var(--font-display); font-size: 22px; color: var(--bg); font-weight: 700; margin-bottom: 12px; }
.footer-tagline { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.7; }
.footer-col-title { font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase; font-weight: 700; color: rgba(255,255,255,0.8); margin-bottom: 16px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.55); transition: color 0.15s; }
.footer-links a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; display: flex; justify-content: space-between; font-size: 13px; color: rgba(255,255,255,0.35); }

/* ─── Divider ────────────────────────────────────────── */
.divider { border: none; border-top: 1px solid var(--border); margin: 24px 0; }

/* ─── Utility ────────────────────────────────────────── */
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-8  { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.text-accent { color: var(--accent); }
.text-gold   { color: var(--gold); }
.text-muted  { color: var(--muted); }
