body {
  background: #111820;
  color: #ffffff;
  font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;

  padding: 1rem 2rem;

  border-bottom: 1px solid #29323d;
}

.brand {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.brand-tagline {
  font-size: 0.8rem;
  color: #b8c0c8;
}

.site-nav {
  display: flex;
  gap: 2rem;
}

.site-nav a {
  color: #ffffff;
  text-decoration: none;
  font-size: 1rem;
}

.site-nav a:hover {
  text-decoration: underline;
}

/* Mobile */
@media (max-width: 600px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;

    padding: 1rem;
  }

  .site-nav {
    width: 100%;
    justify-content: space-between;
    gap: 0.5rem;
  }

  .site-nav a {
    padding: 0.5rem 0;
    font-size: 0.95rem;
  }
}

.hero {
  display: flex;
  align-items: center;
  min-height: 520px;
  padding: 4rem 2rem;
}

.hero-content {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.hero-eyebrow {
  margin: 0 0 1rem;

  color: #b33a3a;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;

  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 1;
}

.hero h1 span {
  color: #b33a3a;
}

.hero-description {
  max-width: 650px;
  margin: 1.5rem 0 0;

  color: #c5cbd1;
  font-size: 1.25rem;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.button {
  display: inline-block;
  padding: 0.9rem 1.4rem;

  border-radius: 6px;

  font-weight: 700;
  text-decoration: none;
}

.button-primary {
  background: #b33a3a;
  color: #ffffff;
}

.button-secondary {
  border: 1px solid #b33a3a;
  color: #ffffff;
}

/* Hero - Mobile */
@media (max-width: 600px) {
  .hero {
    min-height: auto;
    padding: 3rem 1rem;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero-description {
    font-size: 1.05rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    text-align: center;
  }
}

.coming-soon {
  padding: 4rem 2rem;
  text-align: center;

  border-top: 1px solid #29323d;
}

.coming-soon-label {
  margin: 0 0 0.75rem;

  color: #b33a3a;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.coming-soon h2 {
  margin: 0;

  font-size: 2.5rem;
}

.coming-soon > p:last-child {
  max-width: 600px;
  margin: 1rem auto 0;

  color: #c5cbd1;
  font-size: 1.05rem;
  line-height: 1.6;
}

@media (max-width: 600px) {
  .coming-soon {
    padding: 3rem 1rem;
  }

  .coming-soon h2 {
    font-size: 2rem;
  }
}
