:root {
  --navy: #071421;
  --navy-2: #0b1d2e;
  --ink: #f4efe7;
  --muted: #b9c0c8;
  --line: rgba(229, 225, 219, 0.16);
  --gold: #c8ab7b;
  --ivory: #e5e1db;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.32);
}

* {
  box-sizing: border-box;
}

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

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 15%, rgba(200, 171, 123, 0.12), transparent 28rem),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body::before {
  position: fixed;
  inset: 0;
  pointer-events: none;
  content: "";
  background-image: linear-gradient(rgba(229, 225, 219, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(229, 225, 219, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.85), transparent 78%);
}

.page-shell {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: clamp(1.5rem, 4vw, 4rem);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(17rem, 0.84fr) minmax(20rem, 1.16fr);
  gap: clamp(2rem, 5vw, 5.5rem);
  align-items: center;
  width: min(100%, 1080px);
}

.hero::after {
  position: absolute;
  right: 4%;
  bottom: -3.5rem;
  z-index: -1;
  width: 52%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(200, 171, 123, 0.55), transparent);
}

.brand-panel {
  display: grid;
  place-items: center;
  min-height: clamp(21rem, 40vw, 32rem);
  padding: clamp(0.5rem, 2vw, 1.5rem);
}

.brand-logo {
  display: block;
  width: min(100%, 22rem);
  height: auto;
}

.content-panel {
  max-width: 42rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 1.3rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 2.75rem;
  height: 1px;
  content: "";
  background: var(--gold);
}

h1 {
  max-width: 13ch;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.05rem, 7.1vw, 6.05rem);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.94;
}

.lede {
  max-width: 39rem;
  margin: 1.6rem 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.coming-soon-note {
  max-width: 33rem;
  margin: 2rem 0 0;
  padding-left: 1rem;
  border-left: 1px solid rgba(200, 171, 123, 0.55);
  color: rgba(185, 192, 200, 0.78);
  font-size: 0.95rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 820px) {
  .page-shell {
    align-items: start;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .brand-panel {
    min-height: auto;
    padding: 0.5rem;
  }

  .brand-logo {
    width: min(100%, 15rem);
  }

  h1 {
    max-width: 11ch;
  }
}

@media (max-width: 560px) {
  .page-shell {
    padding: 1rem;
  }

  .content-panel {
    padding-bottom: 1rem;
  }

  h1 {
    font-size: clamp(2.75rem, 15vw, 4.2rem);
  }
}
