
:root {
  --black: #0A0A0A;
  --charcoal: #1A1A1A;
  --bone: #F2F1ED;
  --burgundy: #5B0F1A;
  --smoke: #8B8D91;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  min-height: 100%;
  background: var(--black);
  color: var(--bone);
  font-family: Arial, Helvetica, sans-serif;
}

body { overflow-x: hidden; }

.hero {
  position: relative;
  min-height: 100vh;
  background-image:
    linear-gradient(90deg, rgba(10,10,10,.94) 0%, rgba(10,10,10,.62) 42%, rgba(10,10,10,.82) 100%),
    linear-gradient(0deg, rgba(10,10,10,.90) 0%, rgba(91,15,26,.10) 45%, rgba(10,10,10,.84) 100%),
    url("hero.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  padding: 28px clamp(22px, 5vw, 72px);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(242,241,237,.05) 0%, rgba(91,15,26,.06) 38%, rgba(10,10,10,0) 64%);
  pointer-events: none;
}

.site-header,
.hero-content,
footer {
  position: relative;
  z-index: 2;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.logo {
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 700;
  letter-spacing: -0.065em;
}

nav {
  display: flex;
  gap: clamp(14px, 3vw, 34px);
  flex-wrap: wrap;
  justify-content: flex-end;
}

nav a {
  color: rgba(242,241,237,.84);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  transition: color .2s ease, opacity .2s ease;
}

nav a:hover {
  color: var(--bone);
  opacity: 1;
}

.hero-content {
  width: min(700px, 100%);
  margin-top: auto;
  margin-bottom: clamp(55px, 12vh, 130px);
}

h1 {
  font-size: clamp(52px, 10vw, 132px);
  line-height: .86;
  letter-spacing: -0.085em;
  margin: 0;
  color: var(--bone);
}

.subhead {
  color: rgba(242,241,237,.80);
  font-size: clamp(17px, 2vw, 24px);
  margin: 24px 0 0;
}

.subhead::after {
  content: "";
  display: block;
  width: 84px;
  height: 3px;
  border-radius: 999px;
  background: var(--burgundy);
  margin-top: 16px;
}

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

.button {
  color: var(--bone);
  text-decoration: none;
  border: 1px solid rgba(242,241,237,.48);
  padding: 13px 18px;
  border-radius: 999px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .13em;
  background: rgba(26,26,26,.40);
  backdrop-filter: blur(8px);
  transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

.button:hover {
  background: rgba(139,141,145,.14);
  border-color: rgba(242,241,237,.78);
  transform: translateY(-1px);
}

.button.primary {
  background: var(--burgundy);
  border-color: var(--burgundy);
  color: var(--bone);
}

.button.primary:hover {
  background: #6d1420;
  border-color: #6d1420;
}

footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(242,241,237,.60);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.mark {
  font-size: clamp(30px, 4vw, 56px);
  font-weight: 900;
  letter-spacing: -0.16em;
  color: var(--bone);
}


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

  nav {
    gap: 12px;
  }

  nav a {
    font-size: 10px;
  }

  .hero-content {
    margin-top: 36vh;
  }

  footer {
    align-items: flex-end;
  }
}
