:root {
  color-scheme: dark;
  --bg: #071018;
  --bg-2: #0c1822;
  --gold: #e8c57a;
  --gold-soft: rgba(232, 197, 122, 0.14);
  --white: #f8f8f6;
  --fog: rgba(248, 248, 246, 0.64);
  --mute: rgba(248, 248, 246, 0.42);
  --line: rgba(255, 255, 255, 0.1);
  --serif: Georgia, "Times New Roman", serif;
  --sans: system-ui, -apple-system, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--white);
  font-family: var(--sans);
}

a { color: var(--gold); text-decoration: none; }
a:hover { text-decoration: underline; }

.nav {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.22em;
  font-size: 11px;
}
.brand img {
  width: 42px;
  height: 42px;
  border-radius: 11px;
}
.nav-links {
  display: flex;
  gap: 18px;
  font-size: 13px;
  color: var(--fog);
}
.nav-links a { color: inherit; }

.hero {
  display: grid;
  gap: 28px;
  padding: 92px 22px 48px;
  background: #04080d;
}
.hero-art {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: min(78svh, 820px);
  object-fit: contain;
  object-position: center;
  margin: 0 auto;
}
.hero-copy {
  max-width: 720px;
}
.eyebrow {
  color: var(--gold);
  letter-spacing: 0.28em;
  font-size: 11px;
  margin: 0 0 14px;
}
h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 7vw, 68px);
  line-height: 1.05;
  margin: 0 0 16px;
}
.lede {
  max-width: 38rem;
  color: var(--fog);
  font-size: 17px;
  line-height: 1.55;
  margin: 0 0 24px;
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 16px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}
.btn:hover { text-decoration: none; }
.btn-gold {
  background: var(--gold);
  color: #111318;
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  border: 1px solid var(--line);
}

.wrap {
  width: min(1080px, calc(100% - 44px));
  margin: 0 auto;
}
.section {
  padding: 72px 0;
}
.section h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 4vw, 40px);
  margin: 0 0 12px;
}
.section > p, .intro {
  color: var(--fog);
  line-height: 1.6;
  max-width: 40rem;
}

.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 32px;
}
.card {
  background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.02));
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 22px;
}
.card h3 {
  margin: 0 0 8px;
  font-size: 18px;
}
.card p {
  margin: 0;
  color: var(--fog);
  line-height: 1.55;
}

.band {
  background: var(--gold-soft);
  border: 1px solid rgba(232, 197, 122, 0.22);
  border-radius: 24px;
  padding: 28px;
}
.band h2 { margin-bottom: 10px; }
.band p { margin: 0; color: var(--fog); line-height: 1.6; }

footer {
  border-top: 1px solid var(--line);
  padding: 28px 22px 40px;
  color: var(--mute);
  font-size: 13px;
}
.foot {
  width: min(1080px, 100%);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: space-between;
}

.page {
  padding: 110px 22px 64px;
}
.page h1 { font-size: clamp(32px, 6vw, 48px); }
.page p, .page li {
  color: var(--fog);
  line-height: 1.65;
  max-width: 42rem;
}
.page ul { padding-left: 1.15rem; }

@media (min-width: 760px) {
  .nav { padding: 22px 36px; }
  .grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 88px 0; }
}

@media (min-width: 900px) {
  .hero {
    min-height: 100svh;
    grid-template-columns: minmax(280px, 0.95fr) minmax(320px, 1fr);
    align-items: center;
    gap: 48px;
    padding: 88px 48px 48px;
  }
  .hero-art {
    max-height: calc(100svh - 120px);
    justify-self: center;
  }
}
