/* ============================================
   RZ Commerce — Design Tokens
   Palette: black, gold (from logo), warm white
   Type: Cormorant Garamond (display serif) / Poppins (body)
   Note: no animation effects requested — transitions kept to instant/simple color changes only
   ============================================ */

:root {
  --bg: #0A0A0A;
  --bg-alt: #121110;
  --surface: #161513;
  --surface-2: #1C1A17;
  --border: #2E2A22;
  --border-soft: #221F1A;

  --gold: #C9A24B;
  --gold-bright: #E4C578;
  --gold-glow: rgba(201, 162, 75, 0.14);

  --text: #F5F1E8;
  --text-muted: #B8AF9E;
  --text-faint: #7A7267;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;

  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Poppins', sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.18;
  margin: 0 0 .5em;
  color: var(--gold-bright);
  letter-spacing: 0.01em;
}

.wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 88px 0; }
.section-alt { background: var(--bg-alt); border-top: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft); }

.section-tag {
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 12px;
}
.section-tag.center { text-align: center; }

.section-title { font-size: clamp(28px, 4vw, 40px); }
.section-title.center { text-align: center; }
.section-sub {
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto 48px;
  font-size: 16px;
}
.section-sub.center { text-align: center; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14.5px;
  padding: 13px 26px;
  border-radius: 4px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .15s, border-color .15s, color .15s;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: #0A0A0A;
}
.btn-primary:hover { background: var(--gold-bright); }

.btn-outline {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold-bright); }

.btn-ghost { background: transparent; color: var(--text-muted); }
.btn-ghost:hover { color: var(--gold-bright); }

.btn-sm { padding: 9px 18px; font-size: 13.5px; }
.btn-lg { padding: 16px 32px; font-size: 15.5px; }

/* ============ HEADER ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 10, 10, 0.92);
  border-bottom: 1px solid var(--border-soft);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand-logo { height: 38px; width: 38px; object-fit: contain; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  color: var(--gold-bright);
  letter-spacing: 0.02em;
}

.main-nav { display: flex; gap: 30px; }
.main-nav a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color .15s;
}
.main-nav a:hover { color: var(--gold-bright); }

.header-actions { display: flex; gap: 10px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span { width: 22px; height: 2px; background: var(--gold-bright); border-radius: 2px; }

/* ============ HERO ============ */
.hero { padding: 80px 0 56px; }
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  color: var(--gold);
  margin: 0 0 18px;
}

.hero h1 { font-size: clamp(32px, 4.4vw, 48px); }

.hero-lead {
  color: var(--text-muted);
  font-size: 18px;
  max-width: 480px;
  margin: 18px 0 32px;
}

.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 32px; }

.hero-tags { display: flex; gap: 20px; flex-wrap: wrap; }
.hero-tags span {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text-faint);
  padding-left: 16px;
  position: relative;
}
.hero-tags span::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

/* ---- hero visual: static bottle illustration frame ---- */
.hero-visual { display: flex; justify-content: center; }
.hero-frame {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--surface), var(--bg-alt));
  padding: 48px 40px;
  text-align: center;
  width: 100%;
  max-width: 320px;
}
.hero-bottle {
  width: 140px;
  margin: 0 65px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.4;
  stroke-linejoin: round;
}
.hero-bottle-label {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.14em;
  fill: var(--gold);
  stroke: none;
}
.hero-frame-caption {
  margin-top: 22px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 17px;
  color: var(--text-muted);
}

/* ============ OFFER STRIP ============ */
.offer-strip { background: var(--gold); color: #0A0A0A; }
.offer-inner { padding: 12px 24px; text-align: center; font-size: 13.5px; font-weight: 600; }

/* ============ ABOUT ============ */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 56px;
  align-items: center;
}
.lead-text { font-size: 18px; color: var(--text); }
.about-copy p { color: var(--text-muted); }
.about-list { margin-top: 22px; display: flex; flex-direction: column; gap: 10px; }
.about-list li { display: flex; align-items: center; gap: 10px; color: var(--text); font-size: 15px; }
.check { color: var(--gold); font-weight: 700; }

.quote-card {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-md);
  padding: 36px 30px;
}
.quote-card p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  line-height: 1.5;
  margin: 0 0 16px;
  color: var(--text);
}
.quote-attr { font-size: 13px; color: var(--text-faint); }

/* ============ PRODUCTS ============ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.product-card {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  text-align: center;
  transition: border-color .15s;
}
.product-card:hover { border-color: var(--gold); }
.product-icon {
  width: 42px; height: 42px;
  margin: 0 auto 16px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.product-card h3 { font-size: 19px; margin-bottom: 8px; }
.product-card p { color: var(--text-muted); font-size: 14px; margin: 0; }

.product-card-cta {
  background: linear-gradient(160deg, var(--gold-glow), transparent);
  display: flex; flex-direction: column; justify-content: center; gap: 10px;
}
.product-card-cta .btn { margin: 8px auto 0; }

/* ============ REVIEWS ============ */
.reviews-wrap { text-align: center; max-width: 620px; }

/* ============ FAQ ============ */
.faq-wrap { max-width: 720px; }
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  padding: 4px 22px;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 17px 0;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--text);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon { color: var(--gold); font-size: 20px; }
.faq-item[open] .faq-icon { transform: rotate(45deg); display: inline-block; }
.faq-item p { color: var(--text-muted); padding-bottom: 18px; margin: 0; font-size: 15px; }

/* ============ CTA / CONTACT ============ */
.cta-section { text-align: center; }
.cta-inner { max-width: 620px; margin: 0 auto; }
.cta-title { font-size: clamp(28px, 4vw, 40px); }
.cta-sub { color: var(--text-muted); font-size: 16.5px; margin-bottom: 36px; }
.contact-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 26px; }
.social-link { color: var(--gold); font-size: 14px; font-weight: 600; }
.social-link:hover { color: var(--gold-bright); }

/* ============ FOOTER ============ */
.site-footer { border-top: 1px solid var(--border-soft); padding-top: 52px; background: var(--bg-alt); }
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-brand { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.footer-logo { height: 38px; width: 38px; object-fit: contain; }
.footer-brand p { color: var(--text-muted); font-size: 13px; margin: 0; }
.footer-links, .footer-contact { display: flex; flex-direction: column; gap: 12px; font-size: 14px; color: var(--text-muted); }
.footer-links a:hover, .footer-contact a:hover { color: var(--gold-bright); }
.footer-bottom {
  border-top: 1px solid var(--border-soft);
  padding: 18px 24px;
  text-align: center;
  font-size: 12.5px;
  color: var(--text-faint);
}

#devInfo a{
  color: var(--gold);
  font-weight: 600;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .about-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-brand { align-items: center; }
  .footer-links, .footer-contact { align-items: center; }
}

@media (max-width: 760px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .header-actions .btn-ghost { display: none; }
  .site-header.nav-open .main-nav {
    display: flex;
    position: absolute;
    top: 76px; left: 0; right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border-soft);
    flex-direction: column;
    padding: 16px 24px 24px;
    gap: 16px;
  }
  .product-grid { grid-template-columns: 1fr; }
  .contact-buttons { flex-direction: column; width: 100%; }
  .contact-buttons .btn { width: 100%; }
}
