:root {
  color-scheme: light;
  background: #9aabad;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-width: 320px;
  min-height: 100%;
  margin: 0;
  background: #9aabad;
}

body {
  color: rgb(244 241 231 / 0.9);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.cover {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
  overflow: hidden;
  overflow: clip;
  background: #9aabad;
  isolation: isolate;
}

.cover-image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: #9aabad;
  object-fit: cover;
  object-position: 50% 50%;
}

.site-header {
  position: absolute;
  z-index: 2;
  inset: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  padding: 0
    max(clamp(2rem, 9.375vw, 8.4375rem), env(safe-area-inset-right))
    0
    max(clamp(2rem, 9.375vw, 8.4375rem), env(safe-area-inset-left));
}

h1 {
  margin: 0;
  font-size: 2.2rem;
  font-weight: 300;
  letter-spacing: -0.015em;
  line-height: 1;
  text-align: left;
  text-shadow: none;
  white-space: nowrap;
}

@media (max-width: 640px) {
  .cover-image {
    object-position: 62% 50%;
  }

  .site-header {
    height: max(64px, calc(64px + env(safe-area-inset-top)));
    padding:
      env(safe-area-inset-top)
      max(1rem, env(safe-area-inset-right))
      0
      max(1rem, env(safe-area-inset-left));
  }
}
