:root {
  --page-bg: #060504;
  --focus: #d8b77a;
}

* {
  box-sizing: border-box;
}

html {
  width: 100%;
  min-height: 100%;
  background: var(--page-bg);
}

body {
  display: grid;
  min-height: 100vh;
  min-height: 100dvh;
  margin: 0;
  overflow: hidden;
  place-items: center;
  color: #f8f1e7;
  font-family: "Segoe UI", Arial, sans-serif;
  background:
    radial-gradient(circle at 50% 20%, rgba(216, 183, 122, 0.16), transparent 34%),
    var(--page-bg);
}

.landing {
  position: relative;
  width: min(100vw, calc(100dvh * 1.7778));
  max-width: 1920px;
  aspect-ratio: 16 / 9;
  margin: 0 auto;
  overflow: hidden;
}

.landing picture {
  display: block;
  width: 100%;
  height: 100%;
}

.landing-art {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.sr-only,
.landing h1 {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.desktop-nav,
.contact-links a {
  position: absolute;
  z-index: 2;
}

.desktop-nav {
  top: 4.5%;
  right: 14.7%;
  display: flex;
  gap: clamp(22px, 2.7vw, 54px);
  align-items: center;
}

.desktop-nav a,
.contact-links a {
  border-radius: 999px;
  color: transparent;
  text-decoration: none;
}

.desktop-nav a {
  width: 74px;
  height: 32px;
}

.contact-links a:focus-visible,
.desktop-nav a:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 5px;
}

.contact-links span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.email-link {
  left: 8.4%;
  bottom: 3.1%;
  width: 26.6%;
  height: 6.2%;
}

.phone-link {
  left: 39.3%;
  bottom: 3.1%;
  width: 18.7%;
  height: 6.2%;
}

@media (max-width: 760px) {
  body {
    background: var(--page-bg);
  }

  .landing {
    width: min(100vw, calc(100dvh * 0.5628));
    max-width: 520px;
    aspect-ratio: 941 / 1672;
  }

  .landing picture,
  .landing-art {
    width: 100%;
    height: 100%;
    max-width: 100%;
  }

  .desktop-nav {
    display: none;
  }

  .email-link {
    left: 5.9%;
    bottom: 5.9%;
    width: 88.1%;
    height: 4.1%;
  }

  .phone-link {
    left: 5.9%;
    bottom: 0.8%;
    width: 88.1%;
    height: 4.1%;
  }
}
