:root {
  --ink: #1b1a16;
  --paper: #efe6d4;
  --muted: #6d6558;
  --rule: #c8b79a;
  --link: #3a5c48;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, "Songti SC", "Noto Serif SC", serif;
  color: var(--ink);
  background: #f3eee4;
  letter-spacing: 0;
}

.hero {
  position: relative;
  min-height: 88vh;
  min-height: 88dvh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #1a1814;
}

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 35%;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(16, 14, 11, 0.18) 0%, rgba(16, 14, 11, 0.22) 42%, rgba(16, 14, 11, 0.72) 100%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  padding: 0 8vw 12vh;
  color: #f4efe4;
  max-width: 18ch;
}

.mark {
  margin: 0 0 18px;
  font-size: 13px;
  line-height: 1;
  text-transform: none;
}

h1 {
  margin: 0;
  font-size: 56px;
  line-height: 1.05;
  font-weight: 600;
}

.lede {
  margin: 18px 0 0;
  font-size: 18px;
  line-height: 1.5;
  color: #ddd4c4;
}

main {
  width: min(720px, calc(100% - 48px));
  margin: 0 auto;
  padding: 56px 0 80px;
}

.now h2 {
  margin: 0 0 12px;
  font-size: 15px;
  font-weight: 600;
  color: var(--muted);
}

.now p {
  margin: 0;
  font-size: 20px;
  line-height: 1.7;
}

footer {
  border-top: 1px solid var(--rule);
  padding: 20px 24px 28px;
  text-align: center;
}

footer a {
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
}

footer a:hover { color: var(--link); }

@media (max-width: 720px) {
  h1 { font-size: 40px; }
  .hero-copy { padding: 0 24px 10vh; max-width: 16ch; }
  .lede { font-size: 16px; }
}
