:root {
  --navy: #0A1628;
  --navy-panel: #10233B;
  --gold: #B8963E;
  --gold-soft: rgba(184, 150, 62, 0.55);
  --cream: #F5F2EC;
  --cream-muted: #AAB4C4;
  --border-soft: #D9DEE7;
}

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

html {
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--navy);
  color: var(--cream);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.grain-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

.coming-soon {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
}

.content {
  text-align: center;
  max-width: 720px;
  width: 100%;
}

.logo-wrap {
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

.logo {
  height: 52px;
  width: auto;
}

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}

.line {
  display: block;
  width: 80px;
  height: 2px;
  background: var(--gold);
}

.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}

.headline {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: clamp(3.5rem, 10vw, 7rem);
  font-weight: 700;
  line-height: 0.98;
  color: var(--cream);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
}

.subhead {
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.75;
  color: var(--cream-muted);
  max-width: 560px;
  margin: 0 auto 48px;
  opacity: 0;
  animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.8s forwards;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  border: 1px solid var(--gold-soft);
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 1s forwards;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.status-text {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}

.contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 1.2s forwards;
}

.contact-link {
  color: var(--cream-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.contact-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.contact-link:hover {
  color: var(--cream);
}

.contact-link:hover::after {
  width: 100%;
}

.contact-sep {
  color: var(--gold-soft);
  font-size: 14px;
}

.footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  text-align: center;
  border-top: 1px solid rgba(184, 150, 62, 0.15);
  opacity: 0;
  animation: fadeIn 1.5s ease 1.5s forwards;
}

.footer p {
  font-size: 11px;
  color: var(--cream-muted);
  line-height: 1.6;
  max-width: 640px;
  margin: 0 auto;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.2);
  }
}

@media (max-width: 640px) {
  .coming-soon {
    padding: 32px 20px 80px;
  }
  
  .logo {
    height: 40px;
  }
  
  .contact {
    flex-direction: column;
    gap: 12px;
  }
  
  .contact-sep {
    display: none;
  }
  
  .footer {
    padding: 20px;
  }
  
  .footer p {
    font-size: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .logo-wrap,
  .divider,
  .eyebrow,
  .headline,
  .subhead,
  .status,
  .contact,
  .footer {
    animation: none;
    opacity: 1;
  }
  
  .status-dot {
    animation: none;
  }
}
