:root {
  --color-accent: #c0392b;
  --color-accent-400: #e0785f;
  --color-accent-800: #7a2419;

  --bg: #141312;
  --text: #f3f2f2;
  --rule: rgba(243, 242, 242, .28);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Archivo", system-ui, sans-serif;
}

a {
  color: var(--color-accent);
}

a:hover {
  color: var(--color-accent-400);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 32px;
  border-bottom: 2px solid var(--rule);
}

.wordmark {
  font: 800 11px "Archivo", sans-serif;
  letter-spacing: .2em;
}

.nav nav {
  display: flex;
  gap: 22px;
  font: 600 11px "Archivo", sans-serif;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.nav a {
  text-decoration: none;
}

.nav-about {
  color: var(--text);
}

.nav-signin {
  color: var(--color-accent-400);
}

.hero {
  background: var(--color-accent);
  color: #fff;
  padding: 76px 40px 64px;
}

.hero .eyebrow {
  font: 600 11px "Archivo", sans-serif;
  letter-spacing: .18em;
  text-transform: uppercase;
  opacity: .85;
  margin-bottom: 30px;
}

.hero h1 {
  font-size: 140px;
  line-height: .86;
  letter-spacing: -.045em;
  margin: 0 0 32px;
}

.hero p {
  max-width: 40ch;
  font-size: 19px;
  line-height: 1.45;
  margin: 0;
  font-weight: 500;
}

.info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 2px solid var(--rule);
}

.info-cell {
  padding: 34px 32px;
}

.info-who {
  border-right: 2px solid var(--rule);
}

.info-invited {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.info .label {
  font: 600 10.5px "Archivo", sans-serif;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(243, 242, 242, .45);
  margin-bottom: 10px;
}

.info p {
  font-size: 16px;
  line-height: 1.5;
  color: rgba(243, 242, 242, .8);
  margin: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--color-accent);
  color: #fff;
  text-decoration: none;
  font: 600 12px "Archivo", sans-serif;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 12px 20px;
}

.btn:hover {
  background: var(--color-accent-400);
  color: #fff;
}

.mobile-cta {
  display: none;
}

footer {
  padding: 16px 40px;
  font: 500 12px "Archivo", sans-serif;
  color: rgba(243, 242, 242, .5);
}

@media (max-width: 600px) {
  .nav {
    padding: 12px 20px;
  }

  .nav-about {
    display: none;
  }

  .hero {
    padding: 40px 20px 34px;
  }

  .hero .eyebrow {
    margin-bottom: 22px;
  }

  .hero h1 {
    font-size: 78px;
    margin: 0 0 20px;
  }

  .hero p {
    font-size: 16px;
  }

  .info {
    grid-template-columns: 1fr;
    border-bottom: none;
  }

  .info-cell {
    padding: 24px 20px;
    border-bottom: 1px solid rgba(243, 242, 242, .18);
  }

  .info-who {
    border-right: none;
  }

  .info-invited {
    display: none;
  }

  .mobile-cta {
    display: flex;
    width: calc(100% - 40px);
    min-height: 48px;
    margin: 24px 20px;
    justify-content: flex-start;
    padding-left: 20px;
  }

  footer {
    display: none;
  }
}
