:root {
  color-scheme: dark;
  --ink: #f4f0e8;
  --muted: #c8c0ad;
  --leaf: #8ab17d;
  --gold: #d4a84f;
  --night: #101713;
  --panel: rgba(22, 31, 25, 0.78);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 78% 18%, rgba(212, 168, 79, 0.2), transparent 28rem),
    linear-gradient(145deg, #0e1511 0%, #172018 48%, #251f18 100%);
  color: var(--ink);
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", serif;
}

main {
  width: min(1120px, calc(100vw - 32px));
  min-height: min(720px, calc(100vh - 32px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  padding: clamp(28px, 6vw, 72px);
  border: 1px solid rgba(244, 240, 232, 0.12);
  background: rgba(10, 15, 12, 0.42);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.copy {
  max-width: 620px;
}

p {
  margin: 0;
}

.kicker {
  color: var(--leaf);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1 {
  margin: 18px 0 20px;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.lead {
  max-width: 540px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
  line-height: 1.62;
}

.verse {
  margin-top: 34px;
  padding-left: 18px;
  border-left: 2px solid var(--gold);
  color: #e9dfca;
  font-size: 1rem;
  line-height: 1.7;
}

.verse span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0;
}

.window {
  aspect-ratio: 4 / 5;
  min-height: 360px;
  border: 1px solid rgba(244, 240, 232, 0.16);
  background: var(--panel);
  display: grid;
  place-items: center;
  overflow: hidden;
}

svg {
  width: 100%;
  height: 100%;
  display: block;
}

@media (max-width: 760px) {
  body {
    place-items: stretch;
  }

  main {
    width: 100%;
    min-height: 100vh;
    grid-template-columns: 1fr;
    padding: 28px;
    border: 0;
  }

  .window {
    min-height: 300px;
    order: -1;
  }
}
