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

:root {
  --gold: #C9A84C;
  --gold-light: #E8C97D;
  --gold-dim: rgba(201,168,76,0.12);
  --gold-border: rgba(201,168,76,0.25);
  --bg:   #080808;
  --bg2:  #0F0F0F;
  --bg3:  #161616;
  --text: #EDE8DF;
  --muted: #6B6358;
  --muted2: #4A453E;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

.mono { font-family: 'Space Mono', monospace; }

/* ── HEADER ── */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: all 0.4s;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  height: 68px;
  border-bottom: 1px solid transparent;
  transition: all 0.4s;
}

#header.scrolled .header-inner {
  background: rgba(8,8,8,0.92);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--gold-border);
  height: 56px;
}

.logo {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 1.1rem;
  letter-spacing: 0.25em;
  color: var(--text);
  text-decoration: none;
}

.logo span { color: var(--gold); }

.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  transition: color 0.3s;
}

.nav-links a:hover { color: var(--gold); }

.nav-badge {
  padding: 0.45rem 1.2rem;
  background: var(--gold);
  color: #080808;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  transition: background 0.3s, transform 0.2s;
}

.nav-badge:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 5vw 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg-text {
  position: absolute;
  bottom: -2vw;
  right: -2vw;
  font-family: 'DM Serif Display', serif;
  font-size: 22vw;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201,168,76,0.06);
  pointer-events: none;
  user-select: none;
  line-height: 1;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5vw;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.hero-tag {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
  animation: fadeUp 0.8s ease 0.2s both;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: blink 2s ease-in-out infinite;
}

h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.8rem, 5.5vw, 5.5rem);
  font-weight: 400;
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 2.5rem;
  animation: fadeUp 0.9s ease 0.4s both;
}

h1 em { font-style: italic; color: var(--gold); }

.hero-actions {
  display: flex;
  gap: 1rem;
  animation: fadeUp 0.9s ease 0.6s both;
}

.btn-gold {
  padding: 0.85rem 2rem;
  background: var(--gold);
  color: #080808;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  transition: all 0.3s;
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.btn-ghost {
  padding: 0.85rem 2rem;
  border: 1px solid var(--gold-border);
  color: var(--muted);
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  transition: all 0.3s;
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.hero-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--gold-border);
  border: 1px solid var(--gold-border);
  animation: fadeUp 1s ease 0.6s both;
}

.hero-stat-card {
  background: var(--bg2);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.stat-num {
  font-family: 'DM Serif Display', serif;
  font-size: 2.4rem;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.06em;
}

.hero-deco-box {
  grid-column: span 2;
  background: var(--gold-dim);
  padding: 1.8rem;
  border-top: 1px solid var(--gold-border);
}

.hero-deco-box p {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--gold-light);
  line-height: 1.6;
}

.hero-scroll-bar {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 4rem;
  padding-left: 2px;
}

.hero-scroll-bar .mono {
  font-size: 0.65rem;
  color: var(--muted2);
  letter-spacing: 0.15em;
}

.scroll-line {
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: var(--muted2);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--gold);
  animation: lineSlide 2s ease-in-out infinite;
}

/* ── MARQUEE ── */
.divider-strip {
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  padding: 0.9rem 0;
  overflow: hidden;
  background: var(--bg2);
}

.marquee {
  display: flex;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
}

.marquee span {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding-right: 0;
}

/* ── PRODUCTS ── */
.products {
  padding: 120px 5vw;
  max-width: 1200px;
  margin: 0 auto;
}

.products-header {
  margin-bottom: 4rem;
}

.section-mono {
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}

h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--text);
}

h2 em { font-style: italic; color: var(--gold); }

.products-list {
  border-top: 1px solid var(--muted2);
}

.product-row {
  display: grid;
  grid-template-columns: 60px 1fr auto auto;
  gap: 2rem;
  align-items: center;
  padding: 2rem 0;
  border-bottom: 1px solid var(--muted2);
  transition: background 0.3s;
}

.product-row:hover { background: rgba(201,168,76,0.03); }

.product-index {
  font-size: 0.75rem;
  color: var(--muted2);
  letter-spacing: 0.1em;
}

.product-info h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.35rem;
  font-weight: 400;
  margin-bottom: 0.4rem;
  color: var(--text);
}

.product-info p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.65;
  max-width: 380px;
}

.product-tags {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.tag {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-border);
  padding: 0.25rem 0.7rem;
  white-space: nowrap;
}

.product-price-col {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.8rem;
}

.price {
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem;
  color: var(--gold);
}

.price small {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  color: var(--muted);
}

.row-btn {
  font-size: 0.75rem;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.08em;
  transition: color 0.3s;
}

.row-btn:hover { color: var(--gold); }

/* ── REVIEWS ── */
.reviews {
  padding: 120px 5vw;
  background: var(--bg2);
}

.reviews-header {
  max-width: 1200px;
  margin: 0 auto 4rem;
}

.reviews-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--gold-border);
  border: 1px solid var(--gold-border);
}

.review-card {
  background: var(--bg2);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: background 0.3s;
}

.review-card:hover { background: var(--bg3); }

.featured-review {
  background: var(--gold-dim);
}

.review-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.stars-row { display: flex; gap: 0.2rem; }
.star { font-size: 0.9rem; }
.star.filled { color: var(--gold); }
.star.empty { color: var(--muted2); }

.review-date {
  font-size: 0.65rem;
  color: var(--muted);
  letter-spacing: 0.1em;
}

.review-body {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--text);
  flex: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--muted2);
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gold);
  flex-shrink: 0;
}

.review-author strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.2rem;
}

.review-author span {
  font-size: 0.72rem;
  color: var(--muted);
}

.reviews-cta {
  max-width: 1200px;
  margin: 2.5rem auto 0;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.reviews-cta .mono {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.12em;
}

/* ── CTA ── */
.cta-section {
  padding: 140px 5vw;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.cta-inner .section-mono { text-align: center; }

.cta-desc {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.75;
  margin: 1.5rem 0 2.5rem;
  font-weight: 300;
}

.cta-channels {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.channel-card {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 1.8rem;
  border: 1px solid var(--gold-border);
  text-decoration: none;
  color: var(--text);
  font-size: 0.85rem;
  transition: all 0.3s;
}

.channel-card:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-dim);
}

.channel-icon { font-size: 1rem; }

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--muted2);
  padding: 2.5rem 5vw;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-brand p {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.3rem;
}

.footer-nav {
  display: flex;
  gap: 2rem;
}

.footer-nav a {
  font-size: 0.78rem;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.3s;
}

.footer-nav a:hover { color: var(--gold); }

.footer-copy {
  font-size: 0.65rem;
  color: var(--muted2);
  letter-spacing: 0.1em;
}

/* ── REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

@keyframes lineSlide {
  0%   { left: -100%; }
  100% { left: 100%; }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── MOBILE ── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hero-content { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .product-row { grid-template-columns: 40px 1fr; }
  .product-tags, .product-price-col { display: none; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
}
