/* ─── Eyebrow ────────────────────────────────────────── */
.eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  animation: fadeUp 1s 0.3s ease both;
}

/* ─── Headline ───────────────────────────────────────── */
.headline {
  font-family: var(--font-serif);
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 300;
  line-height: 1.0;
  color: var(--cream);
  animation: fadeUp 1s 0.5s ease both;
}

.headline em {
  font-style: italic;
  color: var(--gold-light);
}

/* ─── Divider ────────────────────────────────────────── */
.divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 36px auto;
  animation: fadeUp 1s 0.65s ease both;
}

.divider-line {
  width: 56px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold));
}

.divider-line.rev {
  background: linear-gradient(to left, transparent, var(--gold));
}

.divider-diamond {
  width: 7px;
  height: 7px;
  background: var(--gold);
  transform: rotate(45deg);
  opacity: 0.9;
}

/* ─── Subtext ────────────────────────────────────────── */
.subtext {
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 1.5px;
  line-height: 2.1;
  color: rgba(245, 237, 216, 0.6);
  max-width: 400px;
  animation: fadeUp 1s 0.75s ease both;
}
