:root {
  --ivory: #f4f0e8;
  --ink: #262720;
  --olive: #626654;
  --line: rgba(38, 39, 32, 0.18);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Alegreya Sans", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
}

a {
  color: inherit;
}

.coming-soon {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(440px, 0.88fr);
}

.art-panel {
  min-height: 100vh;
  background-color: var(--ivory);
  background-image: url("images/hero.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 118% auto;
  border-right: 1px solid var(--line);
}

.content-panel {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(2rem, 4.5vw, 4.5rem);
}

.content {
  width: min(100%, 620px);
  margin: auto 0;
}

.wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 0.18em;
  margin-bottom: clamp(4rem, 8vh, 7rem);
  color: var(--ink);
  font-family: var(--sans);
  font-size: clamp(1.7rem, 2.5vw, 2.55rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.wordmark .amp {
  letter-spacing: 0;
}

.definition {
  width: min(100%, 500px);
  margin-bottom: 2.5rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid var(--line);
  color: var(--olive);
  font-family: var(--serif);
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  line-height: 1.4;
}

.definition p {
  margin: 0.08rem 0;
}

.definition strong {
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.82em;
  font-weight: 400;
  letter-spacing: 0.12em;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--olive);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1 {
  max-width: 620px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(4rem, 7vw, 7.4rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.9;
}

.lede {
  max-width: 550px;
  margin: 2rem 0 0;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2vw, 1.65rem);
  line-height: 1.45;
}

.launch-note {
  margin: 1.2rem 0 2.4rem;
  color: var(--olive);
  font-size: 1rem;
}

.links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
}

.links a {
  padding-bottom: 0.14rem;
  border-bottom: 1px solid currentColor;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.links a:hover,
.links a:focus-visible {
  opacity: 0.62;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 3rem;
  color: var(--olive);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

footer p {
  margin: 0;
}

@media (max-width: 900px) {
  .coming-soon {
    grid-template-columns: 1fr;
  }

  .art-panel {
    min-height: 46vh;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    background-size: 112% auto;
  }

  .content-panel {
    min-height: auto;
    padding: 3rem 7vw 2rem;
  }

  .content {
    margin: 0;
  }

  .wordmark {
    margin-bottom: 4rem;
  }

  footer {
    margin-top: 5rem;
  }
}

@media (max-width: 600px) {
  .art-panel {
    min-height: 38vh;
    background-size: 132% auto;
  }

  .content-panel {
    padding: 2rem 6vw 1.5rem;
  }

  .wordmark {
    font-size: clamp(1.35rem, 7vw, 1.8rem);
    letter-spacing: 0.06em;
  }

  h1 {
    font-size: clamp(3.5rem, 18vw, 5.3rem);
  }

  footer {
    flex-direction: column;
    gap: 0.6rem;
  }
}
