@font-face {
  font-family: "PPLettraMono";
  src: url("assets/font/PPLettraMono-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #231f20;
  --paper: #f2f1ef;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--paper);
}

body {
  min-width: 320px;
  min-height: 100%;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: "PPLettraMono", "Courier New", monospace;
  letter-spacing: 0;
}

.landing {
  position: relative;
  width: 100%;
  min-height: calc(100vw * 1600 / 1920);
  overflow: hidden;
  isolation: isolate;
  background-color: var(--paper);
  background-image: url("assets/png/paspartout-background-desk.jpeg");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100% auto;
}

.logo,
.estate-mark,
.breath-video,
.contact-line {
  position: absolute;
  display: block;
  margin: 0;
}

.logo {
  top: 4.83%;
  left: 50%;
  z-index: 3;
  width: 6.82%;
  min-width: 96px;
  transform: translateX(-50%);
}

.estate-mark {
  top: 61.86%;
  left: 3.39%;
  z-index: 2;
  width: 16.67%;
  height: auto;
}

.breath-video {
  left: 0;
  z-index: 1;
  width: 100%;
  height: auto;
  pointer-events: none;
  mix-blend-mode: multiply;
}

.breath-video--desktop {
  top: 67.53%;
}

.breath-video--mobile {
  display: none;
}

.contact {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.contact-line {
  color: var(--ink);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.19;
  text-decoration: none;
  white-space: nowrap;
}

a.contact-line {
  pointer-events: auto;
}

.contact a[href^="tel"] {
  color: var(--ink);
  text-decoration: none;
}

.contact-social {
  top: calc(97.87% - 14px);
  left: 3.39%;
}

.contact-place {
  top: calc(97.87% - 14px);
  right: 3.39%;
}

.contact-phone {
  top: calc(96.79% - 14px);
  left: 50%;
  transform: translateX(-50%);
}

.contact-email {
  top: calc(97.87% - 14px);
  left: 50%;
  transform: translateX(-50%);
}

@media (max-width: 700px) {
  .landing {
    min-height: calc(100vw * 1300 / 375);
    background-image: url("assets/png/paspartout-background-mobile.jpeg");
  }

  .logo {
    top: 4.74%;
    width: 20.16%;
    min-width: 0;
  }

  .estate-mark {
    top: 57.97%;
    left: 6.4%;
    width: 62.89%;
  }

  .breath-video--desktop {
    display: none;
  }

  .breath-video--mobile {
    display: block;
    top: 64.08%;
  }

  .contact-line {
    font-size: 14px;
    line-height: 1.2;
    text-align: center;
  }

  .contact-social {
    top: 90.54%;
    left: 50%;
    transform: translateX(-50%);
  }

  .contact-place {
    top: 92.9%;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }

  .contact-phone {
    top: 96.21%;
    left: 50%;
    width: max-content;
    max-width: calc(100% - 32px);
    transform: translateX(-50%);
  }

  .contact-email {
    top: 97.53%;
    left: 50%;
    transform: translateX(-50%);
  }
}
