:root {
  --ink: #243126;
  --paper: #f4efe5;
  --blush: #dcb9b3;
  --cream: #fffaf1;
  --line: rgba(36, 49, 38, 0.2);
}

* {
  box-sizing: border-box;
}

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

body {
  background: var(--paper);
  color: var(--ink);
  font-family: "Avenir Next", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

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

main {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  min-height: 100vh;
}

.content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
  padding: clamp(30px, 5.2vw, 78px);
}

.wordmark {
  align-items: center;
  display: inline-flex;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.1rem, 1.7vw, 1.45rem);
  gap: 14px;
  letter-spacing: -0.02em;
  width: fit-content;
}

.mark {
  align-items: center;
  background: var(--ink);
  border-radius: 50%;
  color: var(--cream);
  display: inline-flex;
  font-size: 0.72rem;
  height: 40px;
  justify-content: center;
  letter-spacing: 0.03em;
  width: 40px;
}

.message {
  margin: clamp(70px, 12vh, 150px) 0;
  max-width: 780px;
}

.eyebrow,
.coming-soon,
footer {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow {
  margin: 0 0 24px;
}

h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 7.5vw, 8.4rem);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.88;
  margin: 0 0 clamp(34px, 5vw, 60px);
}

.intro {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.3rem, 2.1vw, 2rem);
  letter-spacing: -0.025em;
  line-height: 1.35;
  margin: 0 0 24px;
  max-width: 680px;
}

.about {
  font-size: clamp(0.98rem, 1.2vw, 1.1rem);
  line-height: 1.75;
  margin: 0;
  max-width: 610px;
}

.coming-soon {
  align-items: center;
  display: flex;
  gap: 14px;
  margin: 38px 0 0;
}

.coming-soon::before {
  background: var(--blush);
  border-radius: 50%;
  content: "";
  height: 10px;
  width: 10px;
}

footer {
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  padding-top: 18px;
}

.portrait {
  margin: 0;
  min-height: 100vh;
  overflow: hidden;
  position: relative;
}

.portrait::after {
  background: linear-gradient(to top, rgba(17, 29, 20, 0.35), transparent 33%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.portrait img {
  height: 100%;
  object-fit: cover;
  object-position: 50% 45%;
  width: 100%;
}

.portrait figcaption {
  bottom: clamp(26px, 4vw, 56px);
  color: white;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 2.7vw, 3rem);
  font-style: italic;
  left: clamp(26px, 4vw, 56px);
  position: absolute;
  z-index: 1;
}

::selection {
  background: var(--blush);
}

@media (prefers-reduced-motion: no-preference) {
  .message > * {
    animation: rise 700ms both;
  }

  .message > :nth-child(2) { animation-delay: 70ms; }
  .message > :nth-child(3) { animation-delay: 140ms; }
  .message > :nth-child(4) { animation-delay: 210ms; }
  .message > :nth-child(5) { animation-delay: 280ms; }
  .portrait img { animation: reveal 1s 100ms both; }

  @keyframes rise {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @keyframes reveal {
    from { opacity: 0; transform: scale(1.035); }
    to { opacity: 1; transform: scale(1); }
  }
}

@media (max-width: 820px) {
  main {
    grid-template-columns: 1fr;
  }

  .content {
    min-height: auto;
    padding: 28px 22px 34px;
  }

  .message {
    margin: 85px 0;
  }

  h1 {
    font-size: clamp(3.8rem, 17vw, 6.2rem);
  }

  footer {
    gap: 16px;
  }

  footer span:nth-child(2) {
    display: none;
  }

  .portrait {
    min-height: 78vh;
  }
}

@media (max-width: 420px) {
  .intro {
    font-size: 1.22rem;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
