* {
  box-sizing: border-box;
}

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

body {
  min-height: 100vh;
  background: #f7f2e4;
  overflow: hidden;
}

.landing {
  min-height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 3vw, 36px);
  background: #f7f2e4;
}

.artwork {
  position: relative;
  width: min(100%, 1860px);
  aspect-ratio: 16 / 9;
  border-radius: clamp(42px, 7.8vw, 150px);
  overflow: hidden;
  background: #d8d1bd;
}

.road {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
}

.brand {
  position: absolute;
  z-index: 2;
  top: 6%;
  left: 50%;
  width: 91%;
  height: auto;
  transform: translateX(-50%);
  display: block;
  pointer-events: none;
}

.contact {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 10.5%;
  width: 90%;
  transform: translateX(-50%);
  margin: 0;
  text-align: center;
  font-family: Georgia, "Times New Roman", serif;
  font-style: normal;
  font-weight: 700;
  line-height: 1.05;
  color: #f7f2e4;
}

.contact a,
.contact span {
  display: block;
  margin: 0;
  color: #f7f2e4;
  text-decoration: none;
}

.phone {
  font-size: clamp(17px, 1.75vw, 32px);
  letter-spacing: 0.01em;
}

.email {
  font-size: clamp(15px, 1.45vw, 27px);
  letter-spacing: 0.005em;
  margin-top: 0.08em !important;
}

.address-line {
  font-size: clamp(12px, 1.1vw, 21px);
  margin-top: 1.65em !important;
}

@media (max-width: 700px) {
  .landing {
    padding: 12px;
  }

  .artwork {
    border-radius: 42px;
  }

  .brand {
    top: 7%;
    width: 92%;
  }

  .contact {
    bottom: 9%;
  }

  .address-line {
    margin-top: 1.25em !important;
  }
}
