:root {
  --bg: #EFEFEF;
  --text: #111111;
  --line: rgba(17,17,17,.52);
  --max: 1120px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
}

body {
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.coming-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 4vw, 58px) 24px 22px;
}

.coming-main {
  width: min(100%, var(--max));
  margin: 0 auto;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.coming-header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: clamp(18px, 3vw, 42px);
  margin-top: clamp(18px, 2vw, 42px);
}

.coming-word {
  font-size: clamp(46px, 7.1vw, 88px);
  line-height: 1;
  font-weight: 200;
  letter-spacing: .025em;
  white-space: nowrap;
}

.coming-word:first-child { text-align: right; }
.coming-word:last-child { text-align: left; }

.brandmark {
  width: clamp(126px, 15vw, 190px);
  height: auto;
  display: block;
}

.coming-copy {
  margin: auto 0;
  text-align: center;
  padding: clamp(70px, 11vh, 150px) 0 clamp(55px, 8vh, 110px);
}

.company-name {
  margin: 0 0 18px;
  font-size: clamp(25px, 3vw, 41px);
  line-height: 1.25;
  font-weight: 300;
}

.coming-title {
  margin: 0;
  font-size: clamp(40px, 5vw, 66px);
  line-height: 1.08;
  font-weight: 300;
}

.contact {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  min-height: 136px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  padding: 24px;
  font-size: clamp(24px, 3vw, 38px);
}

.envelope {
  width: 43px;
  height: 31px;
  border: 1.5px solid var(--text);
  position: relative;
  flex: 0 0 auto;
}

.envelope::before,
.envelope::after {
  content: "";
  position: absolute;
  top: 2px;
  width: 25px;
  height: 1.5px;
  background: var(--text);
}

.envelope::before {
  left: 1px;
  transform: rotate(35deg);
  transform-origin: left center;
}

.envelope::after {
  right: 1px;
  transform: rotate(-35deg);
  transform-origin: right center;
}

.site-footer {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 20px 10px 4px;
  text-align: center;
  font-size: 15px;
  font-weight: 300;
}

.site-footer span {
  margin: 0 12px;
}

.legal-page {
  min-height: 100vh;
  padding: 48px 24px 34px;
}

.legal-wrap {
  width: min(100%, 920px);
  margin: 0 auto;
}

.legal-logo {
  width: min(330px, 74vw);
  height: auto;
  display: block;
  margin-bottom: 54px;
}

.legal-page h1 {
  margin: 0 0 42px;
  font-size: clamp(38px, 6vw, 64px);
  font-weight: 300;
  line-height: 1.05;
}

.legal-page h2 {
  margin: 32px 0 8px;
  font-size: 19px;
  font-weight: 500;
}

.legal-page p,
.legal-page li {
  font-size: 16px;
  line-height: 1.55;
  font-weight: 300;
}

.legal-page p {
  margin: 0 0 14px;
}

.legal-page ul {
  margin: 8px 0 18px;
  padding-left: 22px;
}

.legal-divider {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 54px 0 0;
}

.legal-footer {
  text-align: center;
  padding: 20px 0 0;
  font-size: 14px;
}

.legal-footer span {
  margin: 0 10px;
}

.small-note {
  font-size: 14px !important;
  opacity: .82;
}

@media (max-width: 720px) {
  .coming-page {
    padding: 24px 18px 18px;
  }

  .coming-header {
    gap: 10px;
  }

  .coming-word {
    font-size: clamp(28px, 10vw, 48px);
  }

  .brandmark {
    width: clamp(78px, 21vw, 112px);
  }

  .coming-copy {
    padding: 72px 0 64px;
  }

  .company-name {
    font-size: clamp(20px, 6vw, 29px);
  }

  .coming-title {
    font-size: clamp(34px, 9vw, 49px);
  }

  .contact {
    min-height: 104px;
    gap: 16px;
    padding: 20px 12px;
    font-size: clamp(18px, 5.5vw, 27px);
  }

  .envelope {
    width: 34px;
    height: 25px;
  }

  .envelope::before,
  .envelope::after {
    width: 20px;
  }

  .legal-page {
    padding: 32px 20px 24px;
  }

  .legal-logo {
    margin-bottom: 38px;
  }
}

@media (max-width: 470px) {
  .coming-header {
    grid-template-columns: 1fr auto 1fr;
  }

  .coming-word {
    font-size: 8.2vw;
  }

  .brandmark {
    width: 18vw;
  }

  .contact {
    gap: 12px;
  }

  .envelope {
    display: none;
  }
}
