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

:root {
  --navy: #0d1b2e;
  --navy-light: #1a2d4a;
  --gold: #c9a962;
  --gold-light: #e0c98a;
  --gold-muted: rgba(201, 169, 98, 0.35);
  --cream: #f5f0e6;
  --text-muted: rgba(245, 240, 230, 0.65);
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Montserrat", system-ui, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: var(--font-sans);
  color: var(--cream);
  background: var(--navy);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Background */

.background {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.background__gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201, 169, 98, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 50% 100%, rgba(26, 45, 74, 0.9) 0%, transparent 70%),
    linear-gradient(180deg, var(--navy) 0%, #0a1525 100%);
}

.background__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image:
  radial-gradient(circle at 25% 25%, var(--gold) 1px, transparent 1px),
  radial-gradient(circle at 75% 75%, var(--gold) 1px, transparent 1px);
  background-size: 48px 48px;
}

/* Page layout */

.page {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  padding: 3rem 1.5rem 2rem;
  text-align: center;
}

/* Hero */

.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 640px;
  animation: fadeUp 1s ease both;
}

.hero__logo-wrap {
  margin-bottom: 1.5rem;
  animation: fadeUp 1s ease 0.1s both;
}

.hero__logo {
  width: min(220px, 55vw);
  height: auto;
  filter: drop-shadow(0 8px 32px rgba(0, 0, 0, 0.4));
}

.hero__badge {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.35rem 1.1rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-muted);
  border-radius: 100px;
  animation: fadeUp 1s ease 0.2s both;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 8vw, 3.75rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.1;
  animation: fadeUp 1s ease 0.3s both;
}

.hero__divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 1.25rem 0;
  animation: fadeUp 1s ease 0.4s both;
}

.hero__divider-line {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hero__divider-diamond {
  width: 6px;
  height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

.hero__tagline {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 3vw, 1.25rem);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  animation: fadeUp 1s ease 0.5s both;
}

.hero__coming-soon {
  margin-top: 2rem;
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream);
  animation: fadeUp 1s ease 0.6s both;
}

.hero__description {
  margin-top: 1.25rem;
  max-width: 480px;
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-muted);
  animation: fadeUp 1s ease 0.7s both;
}

.hero__established {
  margin-top: 1.5rem;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-muted);
  animation: fadeUp 1s ease 0.8s both;
}

/* Footer */

.footer {
  margin-top: 3rem;
  animation: fadeUp 1s ease 1s both;
}

.footer__text {
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: rgba(245, 240, 230, 0.35);
}

/* Animations */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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