:root {
  color-scheme: dark;
  background: #241b15;
  color: #fff4df;
  font-family: Georgia, "Times New Roman", serif;
  -webkit-font-smoothing: antialiased;
}

* { box-sizing: border-box; }
body { margin: 0; }

.hero {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
}

.hero__image,
.hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero__image {
  object-fit: cover;
  object-position: center 58%;
}

.hero__shade {
  background: linear-gradient(135deg, rgb(22 14 9 / 58%) 0%, rgb(22 14 9 / 24%) 42%, transparent 72%);
}

.hero__identity {
  padding: clamp(5rem, 15svh, 10rem) 7vw 5rem;
}

h1 {
  margin: 0;
  font-size: clamp(3.4rem, 10.7vw, 11rem);
  font-weight: 400;
  letter-spacing: -.065em;
  line-height: 1.1;
}

p {
  margin: 1.5rem 0 0 .35rem;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(.875rem, 1.3vw, 1.125rem);
  font-weight: 400;
  letter-spacing: .19em;
  line-height: 1.6;
}

.hero__social {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin: 1.25rem 1.5rem 0 .35rem;
  color: inherit;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: .875rem;
  letter-spacing: .08em;
  text-underline-offset: .3em;
}

.hero__social:hover { text-decoration-thickness: 2px; }
.hero__social:focus-visible { outline: 2px solid currentColor; outline-offset: 4px; }

@media (max-width: 640px) {
  .hero__image { object-position: 66% center; }
  .hero__identity { padding: 13svh 7vw 4rem; }
  h1 { font-size: clamp(3rem, 14vw, 5.6rem); }
  p { margin: 1.15rem 0 0 .15rem; letter-spacing: .14em; }
  .hero__shade { background: linear-gradient(180deg, rgb(22 14 9 / 58%), rgb(22 14 9 / 10%) 62%, transparent); }
}

@media (max-height: 480px) and (min-width: 641px) {
  .hero__identity { padding-top: 2rem; }
  h1 { font-size: 6rem; }
}
