:root {
  color-scheme: dark;
  --bg: #050505;
  --text: #f5efe3;
  --muted: #c9bfa8;
  --gold: #d99b00;
  --gold-soft: #f0bb2a;
  --line: rgba(240, 187, 42, 0.28);
}

* {
  box-sizing: border-box;
}

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

body {
  min-height: 100%;
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
}

.page {
  min-height: 100vh;
  background: #000;
}

.hero {
  position: relative;
  min-height: 88vh;
  overflow: hidden;
  display: grid;
  align-items: end;
  isolation: isolate;
}

.hero-cover {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.08) 48%, rgba(0, 0, 0, 0.55)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0.08) 48%, #000 100%);
}

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

.brand-mark {
  width: clamp(72px, 9vw, 116px);
  height: auto;
  display: block;
}

.social-links {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.social-links a {
  text-decoration: none;
  transition: color 160ms ease;
}

.social-links a:hover {
  color: var(--gold-soft);
}

.hero-content {
  width: min(680px, calc(100% - 40px));
  margin: 0 clamp(20px, 7vw, 96px) clamp(48px, 10vh, 96px);
}

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

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(3rem, 9vw, 7.2rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.intro {
  max-width: 560px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.28rem);
  line-height: 1.6;
}

.primary-action {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid var(--gold);
  background: var(--gold);
  color: #090909;
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

.primary-action:hover {
  background: var(--gold-soft);
  border-color: var(--gold-soft);
  transform: translateY(-1px);
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 1fr);
  gap: clamp(28px, 8vw, 120px);
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(52px, 8vw, 88px) 0;
  border-top: 1px solid var(--line);
}

.about h2 {
  max-width: 520px;
  margin-bottom: 0;
  font-size: clamp(2rem, 5vw, 4.4rem);
  line-height: 1;
  text-transform: uppercase;
}

.about p:last-child {
  align-self: end;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.75;
}

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

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

  .topbar {
    align-items: flex-start;
    padding-top: 18px;
  }

  .social-links {
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    font-size: 0.68rem;
  }

  .hero-content {
    margin-bottom: 42px;
  }

  .about {
    grid-template-columns: 1fr;
  }
}
