:root {
  color-scheme: dark;
  --bg: #090909;
  --panel: #141210;
  --panel-strong: #1d1914;
  --text: #f7f2e8;
  --muted: #c8bdab;
  --subtle: #867b6a;
  --gold: #d7a84c;
  --gold-light: #f0d58d;
  --line: rgba(240, 213, 141, 0.22);
  --shadow: rgba(0, 0, 0, 0.5);
}

* {
  box-sizing: border-box;
}

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

body {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(215, 168, 76, 0.15), transparent 32rem),
    linear-gradient(135deg, #070707 0%, #11100f 42%, #080808 100%);
}

body::before {
  position: fixed;
  inset: 0;
  pointer-events: none;
  content: "";
  background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 100% 4px;
  opacity: 0.18;
}

.site-shell {
  display: grid;
  min-height: calc(100vh - 4.5rem);
  place-items: center;
  padding: clamp(1.25rem, 3vw, 3rem);
}

.hero {
  display: grid;
  width: min(100%, 72rem);
  grid-template-columns: minmax(0, 1.05fr) minmax(18rem, 0.95fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.hero__content {
  max-width: 42rem;
}

.eyebrow {
  margin: 0 0 1.25rem;
  color: var(--gold-light);
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1 {
  max-width: 13ch;
  margin: 0;
  font-size: clamp(3rem, 8vw, 6.8rem);
  line-height: 0.9;
  letter-spacing: 0;
  text-wrap: balance;
}

.tagline {
  margin: 1.5rem 0 0;
  color: var(--gold);
  font-size: clamp(1.35rem, 3vw, 2.2rem);
  font-weight: 700;
  line-height: 1.15;
}

.intro {
  max-width: 39rem;
  margin: 1.25rem 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  line-height: 1.7;
}

.status {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  margin: 2rem 0 0;
  padding: 0.75rem 1rem;
  border: 1px solid var(--line);
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.artwork-panel {
  position: relative;
  min-height: clamp(18rem, 42vw, 32rem);
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  background:
    url("assets/coming-soon-banner.png") center / cover no-repeat,
    linear-gradient(145deg, rgba(240, 213, 141, 0.18), transparent 36%),
    linear-gradient(180deg, var(--panel-strong), var(--panel));
  box-shadow: 0 2rem 5rem var(--shadow);
}

.artwork-panel::before {
  position: absolute;
  inset: 1.25rem;
  content: "";
  border: 1px solid rgba(240, 213, 141, 0.16);
}

.site-footer {
  padding: 0 1.25rem 1.5rem;
  color: var(--subtle);
  font-size: 0.9rem;
  text-align: center;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 800px) {
  .site-shell {
    min-height: auto;
    padding-top: 2rem;
  }

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

  h1 {
    max-width: 12ch;
  }

  .artwork-panel {
    min-height: 18rem;
  }
}

@media (max-width: 460px) {
  .site-shell {
    padding-inline: 1rem;
  }

  h1 {
    font-size: clamp(2.55rem, 16vw, 4rem);
  }

  .status {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}
