/* -----------------------------------
   Landing Page
----------------------------------- */

.landing-page {
  min-height: 100vh;
  margin: 0;
  background-color: #3D3D3D;
  background-image: url('../img/png/paper-dark.png');
  background-repeat: repeat;
  background-size: auto;
  color: #f7f3ec;
}

.landing {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px;
  box-sizing: border-box;
}

.landing__content {
  max-width: 720px;
  text-align: center;
}

.landing__mark {
  display: flex;
  justify-content: center;
  margin: 0 0 20px;
}

.landing__mark svg {
  display: block;
  width: 72px;
  height: auto;
}

.landing__eyebrow {
  margin: 0 0 24px;
  font-size: 0.875rem;
  letter-spacing: 0.12em;
  color: rgba(247, 243, 236, 0.72);
}

.landing__title {
  margin: 0;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.landing__lede {
  max-width: 560px;
  margin: 32px auto 0;
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  line-height: 1.4;
  color: rgba(247, 243, 236, 0.78);
}

.landing__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  margin-top: 32px;
  padding: 0 18px;

  background: transparent;
  /*border: 1px solid var(--orange-peel);
  border-radius: 0.375rem;*/

  color: var(--orange-peel, #FFA070);
  font-family: "Helvetica Neue", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1;
  text-decoration: none;

  transition:
    background-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.landing__button:hover,
.landing__button:focus-visible {
  /*background: var(--orange-peel);
  color: var(--paper-dark, #27231f);
  transform: translateY(-1px);*/
}

.landing__button:focus-visible {
  /*outline: 2px solid var(--orange-peel);
  outline-offset: 4px;*/
}
#copyright {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  z-index: 10;
  color: var(--graphite-H, #999896);
  font-family: "futura-pt", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 11px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.02em;
}

/* -----------------------------------
   Typography
----------------------------------- */

.landing__eyebrow {
  margin: 0;
  font-family: "futura-pt", sans-serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  color: var(--graphite-7H, #D9D7D5);
}

.landing__tagline {
  max-width: 580px;
  margin: 24px auto 0;
  font-family: "Brygada 1918", serif;
  font-size: 1.4rem;;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: var(--graphite-7H, #D9D7D5);
}

.landing__byline {
  position: fixed;
  left: 50%;
  bottom: 40px;
  transform: translateX(-50%);

  width: calc(100% - 64px);
  margin: 0;

  font-family: "futura-pt", sans-serif;
  font-size: 10px;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-align: center;
  color: var(--graphite-H, #999896);
}

.map-title, .menu-title, .menu-item, .map-menu-item, .dropdown-item {
    font-family: "Helvetica Neue", "HelveticaNeue-Light", "Helvetica Neue Light", Helvetica, Arial, "Lucida Grande", sans-serif;
    font-style: normal;
}

.landing__byline-prefix {
  font-weight: 400;
}

.landing__byline-brand {
  font-weight: 600;
  text-transform: none;
}

@media (max-height: 520px) {
  .landing {
    align-items: start;
    padding-top: 64px;
    padding-bottom: 80px;
  }

  .landing__byline {
    position: static;
    transform: none;
    width: auto;
    margin-top: 48px;
  }
}