:root {
  --black: #0e0e0e;
  --charcoal: #232323;
  --gold: #c6a357;
  --sun: #ffee86;
  --light: #f5f3ee;
  --line: rgba(245, 243, 238, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--light);
  font-family: Bahnschrift, "Segoe UI", Arial, sans-serif;
}

a {
  color: inherit;
}

.site-shell {
  min-height: 100vh;
  overflow-x: hidden;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  isolation: isolate;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  opacity: 0.62;
  z-index: -3;
}

.hero-shade {
  background:
    radial-gradient(circle at 22% 42%, rgba(198, 163, 87, 0.18), transparent 24rem),
    linear-gradient(90deg, rgba(14, 14, 14, 0.92), rgba(14, 14, 14, 0.45) 48%, rgba(14, 14, 14, 0.88));
  z-index: -2;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(20px, 5vw, 72px);
}

.brand,
.nav {
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand {
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: var(--light);
  color: var(--black);
  font-weight: 900;
}

.nav a {
  text-decoration: none;
  color: rgba(245, 243, 238, 0.78);
  font-size: 0.95rem;
}

.nav a:hover {
  color: var(--sun);
}

.hero-content {
  align-self: center;
  width: min(960px, 92vw);
  padding: clamp(24px, 6vw, 84px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.82rem;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 20px;
  font-family: Impact, Rockwell, Bahnschrift, sans-serif;
  font-size: clamp(5rem, 18vw, 17rem);
  line-height: 0.78;
  letter-spacing: 0;
  text-transform: uppercase;
}

.lead {
  max-width: 650px;
  color: rgba(245, 243, 238, 0.82);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1.45;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
}

.button.primary {
  background: var(--gold);
  color: var(--black);
}

.button.secondary {
  background: var(--light);
  color: var(--black);
}

.button.small {
  min-height: 40px;
  margin-top: 18px;
}

.scroll-hint {
  padding: 0 clamp(20px, 5vw, 72px) 34px;
  color: rgba(245, 243, 238, 0.52);
}

.section {
  padding: clamp(56px, 8vw, 110px) clamp(20px, 5vw, 72px);
  background: var(--black);
  border-top: 1px solid var(--line);
}

.section.alt {
  background: #151515;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(280px, 1.2fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: start;
}

h2 {
  font-family: Rockwell, Bahnschrift, "Segoe UI", sans-serif;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1;
}

.panel,
.mini-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(245, 243, 238, 0.06);
  padding: 28px;
}

.panel p,
.mini-card p {
  color: rgba(245, 243, 238, 0.76);
  line-height: 1.6;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.mini-card h3 {
  margin-bottom: 8px;
  color: var(--sun);
}

@media (max-width: 760px) {
  .topbar {
    align-items: flex-start;
  }

  .nav {
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .hero {
    min-height: 88vh;
  }

  .section-grid,
  .cards {
    grid-template-columns: 1fr;
  }
}
