@charset "utf-8";

/* ================= INTRO BASE ================= */
#intro {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  pointer-events: none;
}

.intro-bg {
  position: absolute;
  inset: 0;
  background: #3d0311;
  opacity: 0;
  transform: scale(1.03);
}

/* ================= TAGLINE ================= */
.intro-tagline {
  position: absolute;
  inset: 0;
  font-family: "Playfair Display", serif;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.1em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: clamp(3rem, 6vw, 5rem);
  color: #C5A059;
}

.intro-tagline span {
  opacity: 0;
  transform: translateY(60px) rotate(6deg);
}

/* ================= BRANDS ================= */
.intro-brands span {
  position: absolute;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  color: #C5A059;
  opacity: 0;
  white-space: nowrap;
}

/* ================= BRAND REVEAL ================= */
.intro-brand {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #C5A059;
  opacity: 0;
}

.intro-brand h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(3rem, 6vw, 5rem);
  letter-spacing: 0.08em;
}

.intro-brand p {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
}

