/* =========================================================
   REGALIA TAILS — Coming Soon
   Onyx black. Champagne gold. Pearl white.
   Designed so the silver+gold logo gleams.
   ========================================================= */

:root {
  --onyx: #0e0d0b;
  --onyx-deep: #080706;
  --onyx-soft: #1a1815;
  --pearl: #f0ebe1;
  --pearl-dim: #c9c1b3;
  --gold: #c9a86a;
  --gold-bright: #e0c389;
  --gold-deep: #8a6f44;
  --muted: #7a7268;

  --serif: 'Playfair Display', 'Times New Roman', serif;
  --sans: 'Inter Tight', -apple-system, system-ui, sans-serif;

  --maxw: 760px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  background: var(--onyx);
  color: var(--pearl);
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  overflow-x: hidden;
  background-image:
    radial-gradient(ellipse at 20% 0%, rgba(201, 168, 106, 0.10) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 100%, rgba(201, 168, 106, 0.08) 0%, transparent 55%),
    radial-gradient(ellipse at 50% 50%, rgba(26, 24, 21, 1) 0%, var(--onyx) 70%);
}

/* Vignette for depth */
.vignette {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(8, 7, 6, 0.6) 100%);
}

/* Film grain */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.9 0 0 0 0 0.85 0 0 0 0 0.75 0 0 0 0.06 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

/* Corner ornaments */
.ornament {
  position: fixed;
  width: 56px;
  height: 56px;
  color: var(--gold);
  z-index: 3;
  opacity: 0;
  animation: ornamentFade 1.6s ease 0.8s forwards;
}

.ornament-top-left {
  top: 32px;
  left: 32px;
}

.ornament-bottom-right {
  bottom: 32px;
  right: 32px;
}

@keyframes ornamentFade {
  to { opacity: 1; }
}

/* Container */
.container {
  position: relative;
  z-index: 5;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 80px 32px 48px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Brand / Logo */
.brand {
  text-align: center;
  margin-bottom: 56px;
  opacity: 0;
  animation: rise 1s ease 0.1s forwards;
}

.logo {
  max-width: 320px;
  max-height: 180px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: inline-block;
  filter: drop-shadow(0 4px 24px rgba(201, 168, 106, 0.18));
}

/* Hero */
.hero {
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 36px;
  opacity: 0;
  animation: rise 1s ease 0.3s forwards;
}

.headline {
  font-family: var(--serif);
  font-size: clamp(52px, 8.5vw, 96px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--pearl);
  margin-bottom: 36px;
}

.headline-line {
  display: block;
  opacity: 0;
  transform: translateY(20px);
  animation: rise 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.headline-line:nth-child(1) { animation-delay: 0.5s; }
.headline-line:nth-child(2) { animation-delay: 0.7s; }
.headline-line:nth-child(3) { animation-delay: 0.9s; }

.headline-italic {
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(180deg, var(--gold-bright) 0%, var(--gold) 50%, var(--gold-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--gold);
}

.tagline {
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 22px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.6;
  color: var(--pearl-dim);
  max-width: 560px;
  margin: 0 auto 44px;
  opacity: 0;
  animation: rise 1s ease 1.1s forwards;
}

/* Decorative divider */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 0 auto 36px;
  max-width: 300px;
  opacity: 0;
  animation: rise 1s ease 1.3s forwards;
}

.divider-line {
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, transparent, var(--gold) 40%, var(--gold) 60%, transparent);
}

.divider-mark {
  color: var(--gold);
  font-size: 16px;
}

/* Coming Soon text */
.coming-soon {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
  text-indent: 0.5em;
  opacity: 0;
  animation: rise 1s ease 1.5s forwards;
}

/* Footer */
.footer {
  margin-top: 64px;
  text-align: center;
  opacity: 0;
  animation: rise 1s ease 1.7s forwards;
}

.footer-divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 24px;
  opacity: 0.5;
}

.footer-copy {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

.footer-bss {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-bss a {
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.footer-bss a:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* Animations */
@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 640px) {
  .container {
    padding: 56px 24px 36px;
  }

  .ornament {
    width: 40px;
    height: 40px;
  }

  .ornament-top-left {
    top: 20px;
    left: 20px;
  }

  .ornament-bottom-right {
    bottom: 20px;
    right: 20px;
  }

  .logo {
    max-width: 240px;
    max-height: 140px;
  }

  .brand {
    margin-bottom: 40px;
  }

  .eyebrow {
    letter-spacing: 0.32em;
    margin-bottom: 28px;
  }

  .tagline {
    margin-bottom: 36px;
  }

  .coming-soon {
    letter-spacing: 0.4em;
  }

  .footer {
    margin-top: 48px;
  }
}

@media (max-width: 380px) {
  .headline {
    font-size: 46px;
  }

  .eyebrow {
    font-size: 10px;
    letter-spacing: 0.28em;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .brand,
  .eyebrow,
  .headline-line,
  .tagline,
  .divider,
  .coming-soon,
  .footer,
  .ornament {
    opacity: 1;
    transform: none;
  }
}
