:root {
  --black: #050505;
  --panel: rgba(10, 11, 12, 0.84);
  --text: #f7f0e4;
  --muted: rgba(247, 240, 228, 0.72);
  --soft: rgba(247, 240, 228, 0.54);
  --gold: #d8a955;
  --amber: #f0ca82;
  --line: rgba(216, 169, 85, 0.25);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 16% 0%, rgba(216, 169, 85, 0.16), transparent 28rem),
    linear-gradient(180deg, #050505, #0c0c0d 54%, #050505);
}

img {
  display: block;
  max-width: 100%;
}

.page {
  min-height: calc(100vh - 76px);
}

.hero {
  position: relative;
  min-height: 78vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-image {
  position: absolute;
  inset: 0;
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.04) 48%, rgba(0, 0, 0, 0.24)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.84));
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(100% - 40px, 1080px);
  margin: 0 auto;
  padding: 120px 0 52px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: 0;
}

h1 {
  max-width: 800px;
  font-size: clamp(3rem, 7vw, 7rem);
  line-height: 0.94;
  text-shadow: 0 18px 58px rgba(0, 0, 0, 0.62);
}

h2 {
  max-width: 900px;
  font-size: clamp(2rem, 4vw, 4.1rem);
  line-height: 1;
}

p {
  max-width: 740px;
  color: var(--muted);
  font-size: clamp(1.02rem, 2vw, 1.24rem);
  line-height: 1.72;
}

.coming-soon {
  width: min(100% - 40px, 1080px);
  margin: 0 auto;
  padding: clamp(42px, 8vw, 86px) 0;
}

.panel {
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: clamp(24px, 5vw, 46px);
  background:
    linear-gradient(135deg, rgba(216, 169, 85, 0.11), rgba(255, 255, 255, 0.035)),
    var(--panel);
  box-shadow: 0 26px 84px rgba(0, 0, 0, 0.34);
}

.footer {
  display: grid;
  place-items: center;
  min-height: 76px;
  padding: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--soft);
  text-align: center;
  background: #050505;
}

.footer span {
  line-height: 1.5;
}

@media (max-width: 720px) {
  .hero {
    min-height: 82vh;
  }

  .hero-image img {
    object-position: 58% center;
  }

  .hero-copy {
    width: min(100% - 28px, 1080px);
    padding-bottom: 34px;
  }

  h1 {
    font-size: clamp(2.5rem, 13vw, 4.2rem);
  }

  .coming-soon {
    width: min(100% - 28px, 1080px);
  }
}
