:root {
  color-scheme: dark;
  --navy-950: #0b1225;
  --navy-900: #10192e;
  --navy-800: #172341;
  --navy-700: #24314f;
  --gold-50: #f4e7c2;
  --gold-100: #e8d7ac;
  --gold-200: #d8ba82;
  --gold-300: #c6a66d;
  --ink-shadow: rgba(0, 0, 0, 0.36);
  --page-x: max(28px, 7vw);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--navy-950);
}

body {
  min-height: 100%;
  margin: 0;
  background: var(--navy-900);
  color: var(--gold-100);
  font-family: "Inter Tight", Inter, ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
}

::selection {
  background: rgba(198, 166, 109, 0.28);
  color: var(--gold-50);
}

a {
  color: inherit;
}

.page-shell {
  position: relative;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  min-height: 100svh;
  overflow: hidden;
  padding: 44px var(--page-x) 38px;
  isolation: isolate;
  background:
    radial-gradient(
      120% 90% at 78% 12%,
      var(--navy-700) 0%,
      var(--navy-800) 34%,
      #101a30 68%,
      var(--navy-950) 100%
    );
}

.page-shell::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(
      60% 55% at 82% 8%,
      rgba(120, 142, 190, 0.28) 0%,
      rgba(120, 142, 190, 0) 62%
    );
  opacity: 0.7;
}

.page-shell::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
  opacity: 0.035;
}

.site-header,
.hero,
.site-footer {
  position: relative;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.brand-mark {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border: 1px solid rgba(198, 166, 109, 0.55);
  transform: rotate(45deg);
}

.brand-mark-core {
  width: 7px;
  height: 7px;
  background: var(--gold-300);
}

.brand-name {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0;
  color: rgba(232, 215, 172, 0.72);
  text-transform: uppercase;
}

.hero {
  align-self: center;
  width: min(100%, 980px);
  padding: 56px 0;
}

.eyebrow {
  margin: 0 0 26px;
  color: rgba(232, 215, 172, 0.62);
  font-size: 0.9375rem;
  font-weight: 400;
  letter-spacing: 0;
}

h1 {
  max-width: 10ch;
  margin: 0;
  color: var(--gold-200);
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 10.5rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.94;
  text-shadow:
    0 1px 0 rgba(255, 241, 209, 0.18),
    0 2px 24px var(--ink-shadow);
}

.site-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
}

.cta {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 16px 30px;
  border: 1px solid rgba(198, 166, 109, 0.5);
  background: rgba(198, 166, 109, 0.04);
  color: var(--gold-100);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  text-decoration: none;
  transition:
    background 0.35s ease,
    border-color 0.35s ease,
    color 0.35s ease,
    transform 0.35s ease;
}

.cta:hover {
  border-color: var(--gold-300);
  background: var(--gold-300);
  color: var(--navy-900);
  transform: translateY(-1px);
}

.cta:active {
  transform: translateY(0);
}

.cta:focus-visible,
.brand:focus-visible {
  outline: 2px solid var(--gold-50);
  outline-offset: 5px;
}

.cta-arrow {
  font-size: 0.9375rem;
  line-height: 1;
}

.legal {
  max-width: 610px;
  text-align: right;
}

.copyright,
.disclaimer {
  margin: 0;
}

.copyright {
  color: rgba(232, 215, 172, 0.46);
  font-size: 0.75rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.disclaimer {
  margin-top: 10px;
  color: rgba(232, 215, 172, 0.34);
  font-size: 0.75rem;
  line-height: 1.45;
}

@media (max-width: 1080px) {
  h1 {
    font-size: 7rem;
  }
}

@media (max-width: 720px) {
  :root {
    --page-x: 26px;
  }

  .page-shell {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .brand {
    gap: 11px;
  }

  .brand-mark {
    width: 23px;
    height: 23px;
  }

  .brand-name {
    font-size: 0.75rem;
  }

  .hero {
    padding: 64px 0 52px;
  }

  .eyebrow {
    max-width: 22rem;
    margin-bottom: 20px;
    font-size: 0.875rem;
    line-height: 1.4;
  }

  h1 {
    font-size: 4.25rem;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .legal {
    max-width: 100%;
    text-align: left;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 3.55rem;
  }

  .cta {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    transition-delay: 0ms !important;
  }
}
