:root {
  --serif: "Instrument Serif", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  color: #fff;
  background: #16231e;
  font-family: var(--sans);
}

a {
  color: inherit;
  text-decoration: none;
}

.grain {
  position: fixed;
  z-index: 10;
  inset: 0;
  opacity: 0.035;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.75'/%3E%3C/svg%3E");
}

.site-header {
  position: fixed;
  z-index: 5;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 26px 4vw;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.site-header > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.09em;
}

.brand svg {
  width: 37px;
  height: 37px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
}

.hero {
  position: relative;
  min-height: 720px;
  height: 100svh;
  overflow: hidden;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
  filter: contrast(1.04) saturate(1.03);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(8, 18, 15, 0.64) 0%, rgba(8, 18, 15, 0.05) 66%),
    linear-gradient(0deg, rgba(8, 18, 15, 0.68) 0%, transparent 42%),
    linear-gradient(180deg, rgba(8, 18, 15, 0.32) 0%, transparent 32%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: flex-end;
  padding: 150px 4vw 96px;
}

.eyebrow {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.73);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.21em;
  text-transform: uppercase;
}

h1 {
  max-width: 1000px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(82px, 11.5vw, 178px);
  font-weight: 400;
  line-height: 0.8;
  letter-spacing: 0;
}

h1 em {
  font-weight: 400;
}

.coordinates {
  position: absolute;
  z-index: 3;
  top: 110px;
  right: 4vw;
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 10px;
  line-height: 1.7;
  letter-spacing: 0.12em;
  text-align: right;
}

footer {
  position: absolute;
  z-index: 3;
  right: 4vw;
  bottom: 30px;
  left: 4vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.68);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

footer p {
  margin: 0;
}

footer div {
  display: flex;
  gap: 28px;
}

footer a {
  transition: color 0.2s ease;
}

footer a:hover {
  color: #fff;
}

@media (max-width: 700px) {
  .site-header {
    padding: 18px 20px;
  }

  .site-header > p {
    display: none;
  }

  .brand {
    font-size: 12px;
  }

  .brand svg {
    width: 32px;
    height: 32px;
  }

  .hero {
    min-height: 620px;
  }

  .hero-image {
    object-position: 47% center;
  }

  .hero-copy {
    padding: 120px 20px 128px;
  }

  h1 {
    font-size: clamp(72px, 25vw, 110px);
    line-height: 0.84;
  }

  .coordinates {
    top: 92px;
    right: 20px;
  }

  footer {
    right: 20px;
    bottom: 22px;
    left: 20px;
    align-items: flex-start;
    gap: 14px;
    flex-direction: column;
  }
}
