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

:root {
  --navy: #0a0e1a;
  --navy-mid: #0f1c3c;
  --gold: #c9a227;
  --gold-light: #e8c96a;
  --gold-muted: rgba(201, 162, 39, 0.45);
  --text-muted: rgba(255, 255, 255, 0.62);
  --text-soft: rgba(255, 255, 255, 0.82);
}

html,
body {
  min-height: 100%;
}

body {
  font-family: "Inter", system-ui, sans-serif;
  background: var(--navy);
  color: #fff;
  -webkit-font-smoothing: antialiased;
}

.page {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(15, 28, 60, 0.9) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(201, 162, 39, 0.08) 0%, transparent 60%),
    linear-gradient(180deg, #060810 0%, var(--navy) 45%, #080c14 100%);
}

.page__glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.page__glow--top {
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.12) 0%, transparent 70%);
}

.page__glow--bottom {
  bottom: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(15, 28, 60, 0.6) 0%, transparent 70%);
}

.content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2.5rem 1.5rem 3rem;
  max-width: 640px;
  width: 100%;
}

.content__logo {
  margin-bottom: 2.5rem;
  animation: fadeDown 1s ease both;
}

.content__logo img {
  display: block;
  width: min(280px, 72vw);
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 12px 40px rgba(0, 0, 0, 0.5));
}

.content__soon {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 6vw, 3.25rem);
  font-weight: 600;
  letter-spacing: 0.28em;
  color: var(--gold-light);
  text-shadow: 0 0 40px rgba(201, 162, 39, 0.35);
  animation: fadeUp 1s ease 0.2s both, pulse 3s ease-in-out 1.5s infinite;
}

.content__divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 1.75rem 0 1.5rem;
  width: min(280px, 70vw);
  animation: fadeUp 1s ease 0.4s both;
}

.content__divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-muted), transparent);
}

.content__divider-diamond {
  width: 7px;
  height: 7px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(201, 162, 39, 0.6);
}

.content__brand {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.1rem, 3.2vw, 1.45rem);
  font-weight: 600;
  letter-spacing: 0.38em;
  color: var(--gold);
  margin-bottom: 2rem;
  animation: fadeUp 1s ease 0.5s both;
}

.content__contact {
  font-style: normal;
  animation: fadeUp 1s ease 0.65s both;
}

.content__address {
  font-size: clamp(0.9rem, 2.5vw, 1rem);
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-soft);
  margin-bottom: 1.25rem;
}

.content__email {
  display: inline-block;
  font-size: clamp(0.95rem, 2.5vw, 1.05rem);
  font-weight: 400;
  color: var(--gold-light);
  text-decoration: none;
  letter-spacing: 0.04em;
  padding: 0.5rem 0;
  border-bottom: 1px solid transparent;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.content__email:hover,
.content__email:focus-visible {
  color: #fff;
  border-bottom-color: var(--gold-muted);
  outline: none;
}

.footer {
  position: relative;
  z-index: 1;
  padding: 1.5rem;
  animation: fadeUp 1s ease 0.8s both;
}

.footer p {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  color: var(--text-muted);
  text-transform: uppercase;
}

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

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

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.72;
  }
}

@media (max-width: 480px) {
  .content__soon {
    letter-spacing: 0.18em;
  }

  .content__brand {
    letter-spacing: 0.22em;
  }

  .footer p {
    letter-spacing: 0.2em;
    font-size: 0.65rem;
  }
}
