*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  min-height: 100dvh;
  color: #000;
  background: #fff;
  font-family: Inter, system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.shell {
  max-width: 40rem;
  margin: 0 auto;
  padding: 4rem 1.25rem 2.5rem;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 3rem;
}

.brand {
  margin: 0 0 1.25rem;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
}

.headline {
  margin: 0 0 0.75rem;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.lede {
  margin: 0 0 2rem;
  color: #444;
  font-size: 1rem;
  font-weight: 400;
}

.destinations {
  display: flex;
  flex-direction: column;
  border-top: 1px solid #e5e5e5;
}

.dest {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  column-gap: 1rem;
  row-gap: 0.15rem;
  padding: 1rem 0;
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid #e5e5e5;
}

.dest:hover .dest-label,
.dest:focus-visible .dest-label {
  text-decoration: underline;
}

.dest:focus-visible {
  outline: 2px solid #000;
  outline-offset: 4px;
}

.dest-label {
  grid-column: 1;
  grid-row: 1;
  font-size: 1rem;
  font-weight: 600;
}

.dest-desc {
  grid-column: 1;
  grid-row: 2;
  color: #666;
  font-size: 0.9375rem;
}

.dest-arrow {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  color: #000;
}

.foot p {
  margin: 0;
  color: #666;
  font-size: 0.875rem;
}

@media (min-width: 720px) {
  .brand {
    font-size: 3rem;
  }

  .dest {
    grid-template-columns: 10rem 1fr auto;
    grid-template-rows: auto;
    align-items: baseline;
  }

  .dest-label {
    grid-column: 1;
    grid-row: 1;
  }

  .dest-desc {
    grid-column: 2;
    grid-row: 1;
  }

  .dest-arrow {
    grid-column: 3;
    grid-row: 1;
  }
}
