/* ============================================
   COMPONENTS — Reusable UI elements
   ============================================ */

/* ---------- Eyebrow Label ---------- */

.eyebrow {
  font-size: 11px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold2);
  font-weight: 800;
}

/* ---------- Big Title ---------- */

.big-title {
  font-size: clamp(50px, 8vw, 115px);
  line-height: 0.9;
  letter-spacing: -0.06em;
  font-weight: 950;
}

/* ---------- Lead Paragraph ---------- */

.lead {
  font-size: clamp(18px, 2.4vw, 29px);
  line-height: 1.45;
  color: #ddd5c8;
  max-width: 780px;
}

/* ---------- Buttons ---------- */

.actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 35px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 185px;
  padding: 15px 22px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: 0.25s ease;
}

.btn-gold {
  background: var(--gold);
  color: #050505;
  box-shadow: 0 12px 45px rgba(212, 175, 55, 0.18);
}

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

.btn-ghost {
  border: 1px solid rgba(242, 210, 122, 0.42);
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
}

.btn-ghost:hover {
  border-color: var(--gold2);
  transform: translateY(-3px);
}

/* ---------- Gold Decorative Line ---------- */

.gold-line {
  width: 70px;
  height: 2px;
  background: var(--gold);
  margin: 28px 0;
}

/* ---------- Feature Points List ---------- */

.feature-points {
  border-top: 1px solid var(--line);
  margin-top: 35px;
}

.point {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 800;
}

.point span:last-child {
  color: var(--gold2);
}

/* ---------- Scroll Cue ---------- */

.scroll-cue {
  position: absolute;
  z-index: 3;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #999;
}

.scroll-cue:after {
  content: "";
  display: block;
  width: 1px;
  height: 45px;
  background: var(--gold3);
  margin: 11px auto 0;
}
