:root {
  color-scheme: dark;
  --bg: #080808;
  --panel: #11100e;
  --text: #fff7e8;
  --muted: #c8bca8;
  --gold: #f5ad16;
  --gold-soft: #ffd36b;
  --line: rgba(245, 173, 22, 0.28);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }


body {

  margin:0;

  background:#080808;

  color:white;

  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

}

a { color: inherit; }

.hero {

  width: 100%;

  overflow:hidden;

  background:#000;

}

.hero-art {

  display:block;

  width:100%;

  height:auto;

  max-width:none;

  margin:0;

}

.intro,
.coming-soon,
footer {
  width: min(72rem, calc(100% - 2rem));
  margin-inline: auto;
}

.intro {
  padding: clamp(3.5rem, 8vw, 7rem) 0;
  border-bottom: 1px solid var(--line);
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--gold-soft);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1, h2 {
  margin: 0;
  max-width: 15ch;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 0.98;
  letter-spacing: -0.035em;
}

h1 { font-size: clamp(2.8rem, 8vw, 6.4rem); }
h2 { font-size: clamp(2rem, 5vw, 4rem); }

.lede,
.coming-soon > p:last-child {
  max-width: 43rem;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.65;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.75rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 150ms ease, background 150ms ease, border-color 150ms ease;
}

.button:hover { transform: translateY(-2px); }

.primary {
  border-color: var(--gold);
  background: var(--gold);
  color: #171006;
}

.secondary { background: rgba(17, 16, 14, 0.7); }

.coming-soon { padding: clamp(4.5rem, 9vw, 7rem) 0; }

footer {
  padding: 1.5rem 0 2.5rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.9rem;
}

@media (max-width: 700px) {
  .hero {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-art {
    width: 100%;
    height: auto;
  }

  .intro { padding-block: 3.5rem; }
  footer { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .button { transition: none; }
}
