:root {
  --black: #000000;
  --gold: #d4af37;
  --white: #ffffff;
  --muted: #a9a9a9;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  min-height: 100%;
}

body {
  background: #000000;
  color: var(--white);
  font-family:
    "DIN Next",
    "Helvetica Neue",
    Arial,
    sans-serif;
}

.landing-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #000000;
}

.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  padding: 64px 24px 48px;

  text-align: center;
  background: #000000;
}

.logo-wrap {
  width: min(720px, 92vw);
  margin-bottom: 54px;
  background: #000000;
}

.logo {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.eyebrow {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.36em;
  margin-bottom: 20px;
}

h1 {
  font-size: clamp(2.6rem, 7vw, 5.6rem);
  font-weight: 500;
  letter-spacing: 0.18em;
  line-height: 1;
}

.gold-line {
  width: 72px;
  height: 2px;

  margin: 30px 0;

  background: linear-gradient(
    90deg,
    transparent,
    #f0d170,
    var(--gold),
    #f0d170,
    transparent
  );
}

.tagline {
  color: #d7d7d7;
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 400;
  letter-spacing: 0.08em;

  margin-bottom: 34px;
}

.contact {
  color: var(--gold);
  text-decoration: none;

  font-size: 0.95rem;
  letter-spacing: 0.08em;

  border-bottom: 1px solid transparent;

  padding-bottom: 4px;

  transition:
    color 0.2s ease,
    border-color 0.2s ease;
}

.contact:hover {
  color: var(--white);
  border-color: var(--gold);
}

footer {
  padding: 24px;

  color: #777;

  font-size: 0.72rem;
  letter-spacing: 0.12em;

  text-align: center;
  text-transform: uppercase;

  background: #000000;
}

@media (max-width: 600px) {

  .hero {
    padding-top: 40px;
  }

  .logo-wrap {
    width: 94vw;
    margin-bottom: 44px;
  }

  .eyebrow {
    font-size: 0.65rem;
    letter-spacing: 0.25em;
  }

  h1 {
    letter-spacing: 0.11em;
  }

  .tagline {
    max-width: 310px;
    line-height: 1.6;
  }
}
