:root {
  --navy: #0a1628;
  --navy-deep: #070f1e;
  --gold: #c9a84c;
  --gold-light: #dfc06a;
  --silver: #b8bfc6;
  --white: #f0f2f5;
  --line: rgba(255, 255, 255, 0.12);
  --shadow: rgba(0, 0, 0, 0.32);
}

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

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

body {
  font-family: 'Manrope', sans-serif;
  color: var(--white);
  background:
    radial-gradient(circle at 12% -8%, rgba(201, 168, 76, 0.16), transparent 34%),
    radial-gradient(circle at 88% 18%, rgba(255, 255, 255, 0.06), transparent 28%),
    linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
}

.landing {
  min-height: 100vh;
  position: relative;
  display: grid;
  padding: 2rem;
  overflow: hidden;
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, transparent, transparent 95px, rgba(255, 255, 255, 0.02) 95px, rgba(255, 255, 255, 0.02) 96px),
    repeating-linear-gradient(0deg, transparent, transparent 95px, rgba(255, 255, 255, 0.02) 95px, rgba(255, 255, 255, 0.02) 96px);
  pointer-events: none;
}

.ambient {
  position: absolute;
  border-radius: 999px;
  filter: blur(18px);
  opacity: 0.9;
}

.ambient-left {
  width: 30rem;
  height: 30rem;
  top: -10rem;
  left: -12rem;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.18), transparent 68%);
}

.ambient-right {
  width: 34rem;
  height: 34rem;
  right: -12rem;
  bottom: -16rem;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 66%);
}

.hero-shell {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - 4rem);
  width: min(100%, 72rem);
  margin: 0 auto;
  display: grid;
  grid-template-rows: 1fr auto 1fr;
  align-items: center;
}

.brand-block {
  align-self: start;
  padding-top: clamp(1rem, 4vw, 2.5rem);
  text-align: center;
}

.brand-name {
  font-family: 'Newsreader', serif;
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: -0.03em;
}

.tagline {
  margin-top: 0.85rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
}

h1 {
  font-family: 'Newsreader', serif;
  font-size: clamp(3rem, 9vw, 6.2rem);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.04em;
  text-align: center;
}

.coming-soon-block {
  align-self: center;
}

.contact-block {
  align-self: end;
  padding-bottom: clamp(1rem, 4vw, 2.5rem);
  text-align: center;
}

.contact-link {
  display: inline-block;
  padding: 0.9rem 1.5rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.contact-link:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.fade {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 640px) {
  .landing {
    padding: 1.25rem;
  }

  .hero-shell {
    min-height: calc(100vh - 2.5rem);
  }

  .tagline,
  .contact-link {
    letter-spacing: 0.18em;
  }
}
