/* ============================================================================
   Hero Section + Brands Bar (Home Page)
   ============================================================================ */

.hero {
  position: relative;
  height: 70vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(201, 168, 76, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 50%, rgba(201, 168, 76, 0.08) 0%, transparent 50%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
}
.hero-content {
  position: relative;
  text-align: center;
  max-width: 700px;
  padding: 0 24px;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--text) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 18px;
  color: var(--text-dim);
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-cta {
  display: inline-block;
  padding: 16px 48px;
  background: var(--gold);
  color: var(--bg);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 4px;
  transition: all 0.3s;
}
.hero-cta:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.3);
}

/* Brands Bar */
.brands {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
  background: var(--bg2);
}
.brands-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  color: var(--text-dim);
  letter-spacing: 1px;
}
.brand-dot { color: var(--gold); font-size: 8px; }

/* About Section */
.about { padding: 80px 0; background: var(--bg2); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-content p { color: var(--text-dim); margin-bottom: 16px; font-size: 15px; line-height: 1.8; }
.about-stats { display: flex; gap: 40px; margin-top: 32px; }
.stat-num { display: block; font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 700; color: var(--gold); }
.stat-label { font-size: 13px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 1px; }
.about-features { display: flex; flex-direction: column; gap: 24px; }
.feature {
  padding: 24px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.feature-icon { font-size: 28px; display: block; margin-bottom: 12px; }
.feature h3 { font-family: 'Playfair Display', serif; font-size: 18px; margin-bottom: 6px; }
.feature p { font-size: 14px; color: var(--text-dim); }

/* Reviews */
.reviews { padding: 80px 0; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.review-card {
  padding: 32px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.review-stars { color: var(--gold); font-size: 18px; margin-bottom: 16px; }
.review-card p { font-size: 14px; color: var(--text-dim); line-height: 1.7; font-style: italic; }
.review-author { display: block; margin-top: 16px; font-size: 13px; color: var(--gold); font-weight: 600; }

/* Footer */
.footer {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  background: var(--bg2);
}
.footer-inner { text-align: center; }
.footer-brand { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 8px; }
.footer-text { color: var(--text-dim); font-size: 14px; margin-bottom: 8px; }
.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 12px;
}
.footer-links a {
  color: var(--text-muted);
  font-size: 13px;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-powered { color: var(--text-muted); font-size: 12px; }

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  z-index: 9999;
  font-size: 13px;
  color: var(--text-dim);
}
.cookie-banner button {
  padding: 6px 18px;
  background: var(--gold);
  color: var(--bg);
  border: none;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}
.cookie-banner button:hover { background: var(--gold-light); }

@media (max-width: 768px) {
  .hero { height: 50vh; min-height: 400px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .brands-list { font-size: 12px; gap: 12px; }
}
