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

:root {
  --gold: #d4af37;
  --gold-light: #f4e4bc;
  --gold-muted: #c9a96e;
  --warm-white: #faf8f5;
  --cream: #f5f0e8;
  --charcoal: #1a1a1f;
  --charcoal-light: #2a2a32;
  --deep-blue: #1a2332;
  --warm-brown: #2d2420;
  --text-muted: #9a9a9a;
}

html {
  font-size: 16px;
}

body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  background: var(--charcoal);
  color: var(--warm-white);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
}

/* Animated Gradient Background */
.gradient-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    var(--charcoal) 0%,
    var(--deep-blue) 25%,
    var(--charcoal-light) 50%,
    var(--warm-brown) 75%,
    var(--charcoal) 100%
  );
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
  z-index: 0;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Soft Vignette Overlay */
.vignette {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    ellipse at center,
    transparent 0%,
    transparent 40%,
    rgba(0, 0, 0, 0.4) 100%
  );
  pointer-events: none;
  z-index: 1;
}

/* Container */
.container {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Hero Section */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1.5rem;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.logo-img {
  max-width: 220px;
  width: 100%;
  height: auto;
  border-radius: 50%;
  box-shadow:
    0 0 40px rgba(212, 175, 55, 0.15),
    0 0 80px rgba(212, 175, 55, 0.08),
    0 20px 60px rgba(0, 0, 0, 0.4);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  animation: logoBreath 4s ease-in-out infinite;
}

.logo-img:hover {
  transform: scale(1.03);
  box-shadow:
    0 0 50px rgba(212, 175, 55, 0.25),
    0 0 100px rgba(212, 175, 55, 0.12),
    0 25px 70px rgba(0, 0, 0, 0.5);
}

@keyframes logoBreath {
  0%,
  100% {
    box-shadow:
      0 0 40px rgba(212, 175, 55, 0.15),
      0 0 80px rgba(212, 175, 55, 0.08),
      0 20px 60px rgba(0, 0, 0, 0.4);
  }
  50% {
    box-shadow:
      0 0 50px rgba(212, 175, 55, 0.2),
      0 0 90px rgba(212, 175, 55, 0.1),
      0 20px 60px rgba(0, 0, 0, 0.4);
  }
}

/* Brand Title */
.brand-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: linear-gradient(
    135deg,
    var(--gold-light) 0%,
    var(--gold) 40%,
    var(--gold-muted) 70%,
    var(--gold-light) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  animation: shimmer 4s ease-in-out infinite;
}

@keyframes shimmer {
  0% {
    background-position: 0% center;
  }
  50% {
    background-position: 100% center;
  }
  100% {
    background-position: 0% center;
  }
}

/* Tagline */
.tagline {
  font-family: "Inter", sans-serif;
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: -0.5rem;
}

/* Elegant Divider */
.divider {
  width: 80px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--gold-muted),
    transparent
  );
  margin: 1rem 0;
  opacity: 0.6;
}

/* Coming Soon Text */
.coming-soon {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.5rem, 10vw, 5.5rem);
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.05em;
  color: var(--warm-white);
  text-shadow:
    0 0 40px rgba(250, 248, 245, 0.1),
    0 0 80px rgba(212, 175, 55, 0.05);
  animation: textGlow 4s ease-in-out infinite;
}

@keyframes textGlow {
  0%,
  100% {
    text-shadow:
      0 0 40px rgba(250, 248, 245, 0.1),
      0 0 80px rgba(212, 175, 55, 0.05);
  }
  50% {
    text-shadow:
      0 0 50px rgba(250, 248, 245, 0.15),
      0 0 100px rgba(212, 175, 55, 0.08);
  }
}

/* Subtitle */
.subtitle {
  font-family: "Inter", sans-serif;
  font-size: clamp(0.85rem, 2vw, 1rem);
  font-weight: 300;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-top: 0.5rem;
  opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 1.5rem;
  }

  .hero {
    gap: 1.2rem;
  }

  .logo-img {
    max-width: 180px;
  }

  .brand-title {
    letter-spacing: 0.05em;
  }

  .tagline {
    letter-spacing: 0.15em;
  }

  .divider {
    width: 60px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 1rem;
  }

  .hero {
    gap: 1rem;
  }

  .logo-img {
    max-width: 140px;
  }

  .brand-title {
    letter-spacing: 0.03em;
    line-height: 1.2;
  }

  .tagline {
    font-size: 0.75rem;
    letter-spacing: 0.12em;
  }

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

  .subtitle {
    font-size: 0.8rem;
    letter-spacing: 0.1em;
  }

  .divider {
    width: 50px;
    margin: 0.75rem 0;
  }
}

@media (max-width: 360px) {
  .brand-title {
    font-size: 1.5rem;
  }

  .coming-soon {
    font-size: 2rem;
  }

  .logo-img {
    max-width: 120px;
  }
}

/* Accessibility - Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .gradient-bg,
  .logo-img,
  .brand-title,
  .coming-soon {
    animation: none;
  }

  .gradient-bg {
    background-position: 0% 50%;
  }
}

/* Selection */
::selection {
  background: var(--gold-muted);
  color: var(--charcoal);
}
