/* ============================================================
   Glowrious Lounge Salon — Coming Soon
   Tokens
   ============================================================ */
:root {
  --brown-900: #1c0d07;
  --brown-700: #2e160d;
  --brown-base: #502a1a;
  --gold: #d4af6a;
  --gold-bright: #f2d99b;
  --gold-dim: #a98a5d;
  --cream: #f4ecdd;
  --divider: rgba(212, 175, 106, 0.28);

  --font-display: "Cormorant Garamond", serif;
  --font-body: "Jost", sans-serif;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  background: radial-gradient(ellipse 90% 70% at 50% 38%, var(--brown-base) 0%, var(--brown-700) 62%, var(--brown-900) 100%);
  color: var(--cream);
  font-family: var(--font-body);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow-x: hidden;
}

/* Subtle texture so the backdrop reads as rich fabric rather than flat colour */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: radial-gradient(circle at 1px 1px, var(--gold) 0.6px, transparent 0.6px);
  background-size: 4px 4px;
}

a {
  color: inherit;
}

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  padding: clamp(1.5rem, 4vw, 2.5rem) 1.5rem 0;
}

.wordmark {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(0.78rem, 1.4vw, 0.95rem);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-dim);
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
}

.wordmark__spark {
  color: var(--gold);
  font-size: 0.8em;
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1.5rem 4rem;
  gap: clamp(1.4rem, 3vw, 2rem);
}

.hero__mark {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.hero__glow {
  position: absolute;
  width: clamp(280px, 48vw, 560px);
  height: clamp(280px, 48vw, 560px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 217, 155, 0.55) 0%, rgba(212, 175, 106, 0.18) 45%, transparent 72%);
  filter: blur(6px);
  animation: breathe 7s ease-in-out infinite;
}

.hero__logo {
  position: relative;
  width: 92vw;
  max-width: 480px;
  height: auto;
  display: block;
}

.hero__tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.05rem, 2.4vw, 1.5rem);
  color: var(--gold-bright);
  max-width: 32em;
  margin: 0;
}

.hero__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.9rem, 3vw, 1.8rem);
  width: 100%;
  max-width: 640px;
}

.hero__line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--divider));
  max-width: 140px;
}

.hero__line:last-of-type {
  background: linear-gradient(90deg, var(--divider), transparent);
}

.hero__coming {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.1rem, 6.5vw, 3.6rem);
  letter-spacing: 0.05em;
  color: var(--gold);
  margin: 0;
  white-space: nowrap;
}

.hero__sub {
  font-weight: 300;
  font-size: clamp(0.92rem, 1.6vw, 1.05rem);
  line-height: 1.75;
  color: var(--cream);
  opacity: 0.85;
  max-width: 34em;
  margin: 0;
}

/* ============================================================
   Ambient sparkles
   ============================================================ */
.hero__star {
  position: absolute;
  color: var(--gold);
  font-size: 0.85rem;
  opacity: 0;
  animation: twinkle 5.5s ease-in-out infinite;
}

.hero__star--1 { top: 14%; left: 16%; animation-delay: 0s; }
.hero__star--2 { top: 26%; right: 14%; animation-delay: 1.4s; font-size: 0.6rem; }
.hero__star--3 { bottom: 22%; left: 10%; animation-delay: 2.6s; font-size: 0.7rem; }
.hero__star--4 { bottom: 16%; right: 18%; animation-delay: 3.8s; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 1.6rem 1.5rem 2rem;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--gold-dim);
}

.site-footer p {
  margin: 0;
}

/* ============================================================
   Motion
   ============================================================ */
@keyframes breathe {
  0%, 100% { opacity: 0.55; transform: scale(0.94); }
  50% { opacity: 1; transform: scale(1.04); }
}

@keyframes twinkle {
  0%, 100% { opacity: 0; transform: scale(0.7); }
  50% { opacity: 0.85; transform: scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  .hero__glow,
  .hero__star {
    animation: none;
  }
  .hero__glow { opacity: 0.75; }
  .hero__star { opacity: 0.5; }
}

/* ============================================================
   Small screens
   ============================================================ */
@media (max-width: 480px) {
  .hero__coming { white-space: normal; }
  .hero__divider { gap: 0.7rem; }
  .hero__line { max-width: 50px; }
}
