:root {
  --blue: #00274c;
  --blue-2: #061b33;
  --blue-3: #0c325f;
  --maize: #ffcb05;
  --paper: #f5f1e7;
  --muted: #b9c2cf;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--paper);
  background:
    radial-gradient(circle at 50% 20%, rgba(255,203,5,.10), transparent 26rem),
    linear-gradient(180deg, #03182f 0%, var(--blue-2) 52%, #020d18 100%);
  font-family: Georgia, 'Times New Roman', serif;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .12;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 72%);
}

.page-shell {
  width: min(1120px, calc(100% - 36px));
  min-height: 100vh;
  margin: 0 auto;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,203,5,.22);
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: min(360px, 48vw);
  height: auto;
}

.social-link {
  color: var(--maize);
  text-decoration: none;
  font-family: Arial, sans-serif;
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .04em;
  white-space: nowrap;
}
.social-link:hover { text-decoration: underline; }

.hero {
  text-align: center;
  align-self: center;
  padding: 54px 0 72px;
}

.hero-logo {
  display: block;
  width: min(880px, 100%);
  height: auto;
  margin: 0 auto 18px;
  filter: drop-shadow(0 18px 36px rgba(0,0,0,.34));
}

.eyebrow {
  margin: 0 0 16px;
  font-family: Arial, sans-serif;
  color: var(--maize);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .32em;
}

.lead {
  margin: 0 0 10px;
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-style: italic;
}

.sublead {
  margin: 0 auto;
  max-width: 640px;
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
}

.actions { margin-top: 30px; }
.button {
  display: inline-block;
  padding: 13px 20px;
  border: 1px solid var(--maize);
  color: var(--blue);
  background: var(--maize);
  text-decoration: none;
  text-transform: uppercase;
  font-family: Arial, sans-serif;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .12em;
  transition: transform .18s ease, box-shadow .18s ease;
}
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,203,5,.15);
}

.coming-soon {
  margin-top: 28px;
  color: #8795a6;
  font-family: Arial, sans-serif;
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0 28px;
  border-top: 1px solid rgba(255,203,5,.14);
  color: #7f8ea0;
  font-family: Arial, sans-serif;
  font-size: .75rem;
}

@media (max-width: 780px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .brand-logo {
    width: min(320px, 78vw);
  }

  .hero {
    padding: 42px 0 56px;
  }

  .hero-logo {
    width: min(760px, 100%);
    margin-bottom: 12px;
  }

  .eyebrow {
    font-size: .72rem;
    letter-spacing: .24em;
  }

  footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .page-shell {
    width: min(100% - 24px, 1120px);
  }

  .site-header {
    padding: 18px 0;
  }

  .brand-logo {
    width: min(280px, 84vw);
  }

  .hero-logo {
    width: min(100%, 96vw);
  }
}
