:root {
  --paper: #f4f1ea;
  --ink: #151515;
  --muted: #6c6962;
  --line: rgb(21 21 21 / 16%);
  --paper-deep: #eae4d8;
  --sans: "DM Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --display: "Space Grotesk", "Arial Narrow", "Helvetica Neue", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--paper);
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

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

main {
  width: min(100%, 1600px);
  min-height: 100svh;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 5.5rem);
  display: flex;
  flex-direction: column;
}

.site-header {
  padding: clamp(1.6rem, 3.2vw, 3rem) 0;
  border-bottom: 1px solid var(--line);
}

.nav,
footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
}

.wordmark {
  display: inline-flex;
  flex-direction: column;
  width: fit-content;
  color: var(--ink);
  font-family: var(--display);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: -0.055em;
  text-decoration: none;
}

.wordmark small {
  margin-top: 0.22rem;
  padding-left: 0.06rem;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: -0.035em;
}

.email-link,
footer {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: -0.025em;
}

.email-link,
footer a {
  text-decoration-color: var(--line);
  text-underline-offset: 0.22em;
}

.email-link:hover,
footer a:hover {
  text-decoration-color: currentcolor;
}

.hero {
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(20rem, 0.97fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 11.5rem);
  padding: clamp(3.75rem, 8vw, 8rem) 0 clamp(4.5rem, 7vw, 7rem);
}

.art {
  position: relative;
  isolation: isolate;
  aspect-ratio: 1 / 0.97;
  width: min(100%, 39rem);
  overflow: hidden;
  display: grid;
  place-items: center;
  color: var(--ink);
  background-color: var(--paper-deep);
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 2.15rem 2.15rem;
}

.art::before,
.art::after {
  position: absolute;
  z-index: -1;
  content: "";
  border: 1px solid rgb(21 21 21 / 34%);
  border-radius: 50%;
}

.art::before {
  width: 73%;
  aspect-ratio: 1;
  transform: translate(-33%, -36%);
}

.art::after {
  right: -9%;
  bottom: -16%;
  width: 60%;
  aspect-ratio: 1;
}

.art img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.copy {
  width: min(100%, 36rem);
  padding-bottom: 0.1rem;
}

.eyebrow {
  margin: 0 0 clamp(1.5rem, 3vw, 2.5rem);
  color: var(--muted);
  font-size: 0.79rem;
  font-weight: 500;
  letter-spacing: 0.015em;
}

h1 {
  max-width: 9.5ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.35rem, 6.3vw, 7.1rem);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.08em;
}

.lede {
  max-width: 25rem;
  margin: clamp(2rem, 4vw, 3.4rem) 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  line-height: 1.48;
  letter-spacing: -0.025em;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: clamp(2rem, 4vw, 3.75rem);
  padding: 0.95rem 1.1rem 0.95rem 1.3rem;
  color: var(--paper);
  background: var(--ink);
  border: 1px solid var(--ink);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: -0.025em;
  text-decoration: none;
  transition: background-color 160ms ease, color 160ms ease;
}

.cta span[aria-hidden="true"] {
  font-size: 1.05rem;
  line-height: 0.8;
}

.cta:hover {
  color: var(--ink);
  background: transparent;
}

footer {
  padding: 1.35rem 0 1.45rem;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

@media (max-width: 720px) {
  main {
    padding: 0 1.35rem;
  }

  .site-header {
    padding: 1.45rem 0;
  }

  .email-link {
    display: none;
  }

  .hero {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 3.75rem;
    padding: 2.6rem 0 4rem;
  }

  .art {
    width: 100%;
    aspect-ratio: 1 / 0.88;
  }

  .copy {
    width: 100%;
  }

  h1 {
    font-size: clamp(3.4rem, 15vw, 5.25rem);
  }

  .lede {
    max-width: 24rem;
  }

  .cta {
    width: 100%;
  }
}

@media (max-width: 380px) {
  footer {
    flex-direction: column;
    gap: 0.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cta {
    transition: none;
  }
}
