:root {
  color-scheme: light;
  --ink: #171715;
  --paper: #e8e3d9;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: 'Jost', Arial, sans-serif;
  font-weight: 300;
}

.coming-soon {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  overflow: hidden;
  background: url('assets/background.png') right center / cover no-repeat;
}

.header_logo {
  max-width: 300px;
  width: 100%;
}

.content {
  width: min(590px, 80%);
  margin: 0 auto;
  padding: clamp(70px, 15.8vh, 170px) 0 9vh;
  text-align: center;
}

.wordmark {
  margin: 0;
  font-family: 'Cormorant Garamond', 'Times New Roman', serif;
  font-size: clamp(80px, 9.4vw, 145px);
  font-weight: 300;
  line-height: .95;
  letter-spacing: -.065em;
  padding-right: .065em;
}

.brand-tagline {
  margin: 21px 0 0;
  font-size: clamp(11px, 1.25vw, 19px);
  letter-spacing: .43em;
  text-transform: uppercase;
  padding-left: .43em;
}

.vertical-line {
  width: 1px;
  height: clamp(45px, 8.6vh, 88px);
  background: #79766f;
  margin: 5.6vh auto 3.1vh;
}

h1 {
  margin: 0;
  font-family: 'Cormorant Garamond', 'Times New Roman', serif;
  font-size: clamp(29px, 3.25vw, 50px);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: .43em;
  text-transform: uppercase;
  padding-left: .43em;
  white-space: nowrap;
}

.horizontal-line {
  height: 1px;
  width: 52px;
  background: #55534c;
  margin: 3vh auto 2.1vh;
}

.subtitle {
  margin: 0;
  font-size: clamp(10px, .96vw, 15px);
  letter-spacing: .48em;
  text-transform: uppercase;
  padding-left: .48em;
}

.signup {
  display: flex;
  width: 100%;
  height: 70px;
  border: 1px solid #514f49;
  border-radius: 999px;
  margin-top: 5.3vh;
}

.signup input {
  width: 0;
  flex: 1;
  min-width: 0;
  border: 0;
  outline: none;
  background: transparent;
  color: var(--ink);
  border-radius: inherit;
  padding: 0 24px 0 36px;
  font: 300 15px 'Jost', Arial, sans-serif;
  letter-spacing: .32em;
}

.signup input::placeholder {
  color: #373733;
  opacity: 1;
}

.signup:focus-within {
  outline: 2px solid #6a655a;
  outline-offset: 5px;
}

.signup button {
  flex: 0 0 70px;
  width: 70px;
  height: 70px;
  margin: -1px -1px -1px 0;
  border: 0;
  border-radius: 50%;
  background: #171715;
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background .2s, transform .2s;
}

.signup button:hover {
  background: #494539;
}

.signup button:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 5px;
}

.signup button svg {
  width: 26px;
  stroke: currentColor;
  stroke-width: 1;
}

.form-status {
  margin: 10px 0 0;
  min-height: 20px;
  font-size: 13px;
  letter-spacing: .03em;
}

.footer {
  margin-top: 3vh;
}

.socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.socials a {
  width: 30px;
  height: 36px;
  display: grid;
  place-items: center;
  color: inherit;
}

.socials svg {
  width: 23px;
  height: 23px;
  stroke: currentColor;
  stroke-width: 1.8;
}

.socials .fill {
  fill: currentColor;
  stroke: none;
}

.footer-line {
  width: 24px;
  height: 1px;
  background: #66635b;
  margin: 24px auto;
}

.footer-tagline {
  margin: 0;
  font-size: 11px;
  letter-spacing: .4em;
  text-transform: uppercase;
}

.footer-tagline span {
  margin: 0 9px;
}

.corner-note {
  position: absolute;
  left: 4.5%;
  bottom: 11%;
  margin: 0;
  font-size: 12px;
  letter-spacing: .35em;
  line-height: 1.4;
  text-transform: uppercase;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (min-width: 1800px) {
  .content {
    width: 660px;
  }
}

@media (max-width: 900px) {
  .coming-soon {
    background-position: 80% center;
  }

  .content {
    width: min(560px, 75%);
  }

  .corner-note {
    left: 24px;
    bottom: 30px;
    font-size: 9px;
  }

  .footer-tagline {
    font-size: 9px;
    letter-spacing: .3em;
  }
}

@media (max-width: 600px) {

  .coming-soon::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(90deg, rgba(239, 234, 225, .78), rgba(239, 234, 225, .66) 65%, rgba(239, 234, 225, .2));
  }

  .content {
    width: calc(100% - 44px);
    max-width: 420px;
    padding: 11svh 0 42px;
  }

  .wordmark {
    font-size: clamp(76px, 22vw, 112px);
  }

  .brand-tagline {
    font-size: 10px;
    letter-spacing: .32em;
    margin-top: 16px;
  }

  .vertical-line {
    margin: 42px auto 30px;
    height: 56px;
  }

  h1 {
    font-size: clamp(26px, 7vw, 36px);
    letter-spacing: .24em;
    padding-left: .24em;
  }

  .horizontal-line {
    margin: 24px auto 22px;
    width: 40px;
  }

  .subtitle {
    font-size: 9px;
    letter-spacing: .3em;
    line-height: 1.8;
  }

  .signup {
    margin-top: 36px;
    height: 58px;
  }

  .signup input {
    padding-left: 22px;
    padding-right: 12px;
    font-size: 12px;
    letter-spacing: .17em;
  }

  .signup button {
    width: 58px;
    height: 58px;
    flex-basis: 58px;
  }

  .footer {
    margin-top: 25px;
  }

  .footer-line {
    margin: 18px auto;
  }

  .footer-tagline {
    font-size: 8px;
    letter-spacing: .22em;
  }

  .footer-tagline span {
    margin: 0 5px;
  }

  .corner-note {
    position: static;
    text-align: center;
    padding: 0 20px 28px;
    font-size: 8px;
    line-height: 1.6;
    letter-spacing: .28em;
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    transition: none !important;
  }
}