:root {
  color-scheme: light;
  --cream: #fff3df;
  --paper: #f4dfbd;
  --ink: #fff7ea;
  --muted: rgba(255, 243, 224, 0.78);
  --tomato: #e35a2f;
  --sage: #a4b36a;
  --line: rgba(255, 243, 224, 0.24);
  --shadow: rgba(0, 0, 0, 0.62);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  background: #100b07;
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  isolation: isolate;
  display: grid;
  align-items: end;
  padding: clamp(24px, 4vw, 56px);
  background-image: url("/assets/a.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(8, 6, 4, 0.9) 0%, rgba(12, 8, 5, 0.72) 30%, rgba(12, 8, 5, 0.22) 62%, rgba(6, 4, 3, 0.18) 100%),
    radial-gradient(circle at 72% 42%, rgba(229, 113, 48, 0.12) 0, transparent 32%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.24) 0%, transparent 45%, rgba(0, 0, 0, 0.38) 100%);
}

.copy {
  width: min(760px, 100%);
  padding: 14vh 0 4vh;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.54);
}

h1 {
  margin: 0;
  max-width: 8ch;
  font-family: "New York", "Iowan Old Style", "Palatino Linotype", Georgia, ui-serif, serif;
  font-size: clamp(4.7rem, 10.5vw, 10rem);
  line-height: 0.9;
  font-weight: 700;
}

.word-line {
  display: block;
  white-space: nowrap;
}

.accent-wrap {
  position: relative;
  display: inline-block;
}

.accent-mark {
  position: absolute;
  width: 0.24em;
  height: auto;
  left: 0.3em;
  top: -0.02em;
  pointer-events: none;
  transform: rotate(-8deg);
  transform-origin: 18% 80%;
  filter: drop-shadow(0 0.02em 0.04em rgba(0, 0, 0, 0.42));
}

.lead {
  margin: 32px 0 0;
  color: var(--tomato);
  font-family: "New York", "Iowan Old Style", "Palatino Linotype", Georgia, ui-serif, serif;
  font-size: clamp(1.9rem, 3.2vw, 3.35rem);
  line-height: 1;
  font-weight: 700;
  max-width: 11.5em;
}

@media (max-width: 760px) {
  .hero {
    min-height: 100svh;
    align-items: end;
    padding: 22px;
    background-position: 63% center;
  }

  .shade {
    background:
      linear-gradient(180deg, rgba(9, 6, 4, 0.34) 0%, rgba(8, 5, 3, 0.52) 44%, rgba(7, 5, 3, 0.9) 100%),
      linear-gradient(90deg, rgba(8, 6, 4, 0.72) 0%, rgba(8, 6, 4, 0.24) 100%);
  }

  .copy {
    padding-top: 34vh;
    padding-bottom: 4vh;
  }

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

  .lead {
    max-width: 9.5em;
  }

}
