:root {
  color-scheme: light;
  --paper: #eee7d8;
  --ink: #171815;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  min-height: 100%;
  background: var(--paper);
  color: var(--ink);
}

body { min-height: 100svh; }

main {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  overflow: hidden;
  padding: clamp(28px, 5vw, 80px);
}

.wordmark {
  position: relative;
  z-index: 1;
  align-self: center;
  padding-left: clamp(0px, 4vw, 72px);
}

h1 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(72px, 11vw, 176px);
  font-weight: 600;
  line-height: 0.82;
  letter-spacing: -0.065em;
}

p {
  margin: clamp(24px, 3vw, 42px) 0 0 0.25em;
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

figure {
  margin: 0;
  width: min(58vw, 760px);
  justify-self: center;
  transform: translateY(3%);
}

img {
  display: block;
  width: 100%;
  height: auto;
  mix-blend-mode: multiply;
}

@media (max-width: 760px) {
  main {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    align-content: center;
    padding: 42px 24px 12px;
  }

  .wordmark {
    padding: 0;
    text-align: center;
  }

  h1 { font-size: clamp(70px, 23vw, 118px); }
  p { margin-top: 20px; margin-left: 0; }

  figure {
    width: min(92vw, 570px);
    align-self: end;
    transform: none;
  }
}
