:root {
  color-scheme: light;
  --ink: #181716;
  --muted: #5d5953;
  --paper: #f7f4ef;
  --panel: #ffffff;
  --line: #d8d0c4;
  --red: #bd2f26;
  --green: #2f6f58;
  --gold: #d9a441;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--paper);
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--ink);
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", serif;
  line-height: 1.5;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgb(24 23 22 / 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgb(24 23 22 / 0.035) 1px, transparent 1px);
  background-size: 32px 32px;
}

.site {
  width: min(1120px, calc(100% - 32px));
  min-height: 100vh;
  margin: 0 auto;
  padding: 32px 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 440px);
  align-items: center;
  min-height: calc(100vh - 160px);
  gap: clamp(28px, 6vw, 88px);
  border-bottom: 1px solid var(--line);
}

.hero__copy {
  max-width: 680px;
  min-width: 0;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--green);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1 {
  max-width: min(100%, 10ch);
  margin: 0;
  font-size: clamp(4rem, 9vw, 7.25rem);
  line-height: 0.86;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.intro {
  max-width: 31rem;
  margin-top: 32px;
  color: var(--muted);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}

.intro p {
  margin: 0;
}

.hero__art {
  margin: 0;
}

.hero__art img {
  display: block;
  width: 100%;
  height: auto;
}

.notes {
  display: flex;
  justify-content: flex-end;
  padding: 28px 0 0;
  color: var(--muted);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.95rem;
}

.notes p {
  width: min(100%, 390px);
  margin: 0;
}

@media (max-width: 760px) {
  .site {
    width: min(100% - 24px, 620px);
    padding: 20px 0;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 48px 0 36px;
  }

  h1 {
    max-width: 8ch;
    font-size: clamp(3.5rem, 19vw, 5.6rem);
  }

  .intro {
    margin-top: 24px;
  }

  .hero__art {
    width: min(78vw, 340px);
  }

  .notes {
    justify-content: flex-start;
  }
}
