:root {
  --color-background: #faf9f6;
  --color-text: #707070;
  --color-divider: rgba(112, 112, 112, 0.7);
}

* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--color-background);
  color: var(--color-text);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body,
a {
  color: var(--color-text);
}

a {
  text-decoration: none;
}

a:hover,
a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.landing-page {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--page-padding-block) var(--page-padding-inline);
  text-align: center;
}

.divider {
  width: 1px;
  background: var(--color-divider);
  flex: 0 0 auto;
}

.divider--top {
  height: clamp(4rem, 16vh, 9rem);
  margin-bottom: clamp(1.8rem, 5vh, 3.4rem);
}

.divider--middle {
  height: clamp(3.2rem, 8vh, 5rem);
  margin-top: clamp(1rem, 2.5vh, 1.6rem);
  margin-bottom: clamp(2rem, 5vh, 3rem);
}

.divider--bottom {
  height: clamp(4.5rem, 18vh, 11rem);
  margin-top: clamp(1.8rem, 4vh, 2.8rem);
}

.brand {
  position: relative;
  width: min(90vw, 28rem);
  height: clamp(7rem, 18vw, 10.5rem);
}

.brand__gegen,
.brand__ueber {
  position: absolute;
  display: block;
  line-height: 0.92;
  white-space: nowrap;
}

.brand__gegen {
  top: 0;
  left: 50%;
  transform: translateX(-48%);
  font-family: 'IBM Plex Serif', Georgia, serif;
  font-weight: 400;
  font-size: clamp(3.8rem, 8vw, 6rem);
  letter-spacing: 0;
}

.brand__ueber {
  right: clamp(0rem, 2vw, 0.8rem);
  bottom: 0;
  font-family: 'IBM Plex Sans', Arial, sans-serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(3.5rem, 7.5vw, 5.9rem);
  letter-spacing: 0;
  opacity: 0.82;
}

.contact-card {
  width: min(100%, 42rem);
}

.contact-card h1 {
  margin: 0;
  font-family: 'IBM Plex Serif', Georgia, serif;
  font-weight: 300;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1.15;
}

.contact-card__subtitle {
  margin: clamp(0.4rem, 1vh, 0.8rem) 0 0;
  font-family: 'Noto Sans Myanmar', 'IBM Plex Sans', Arial, sans-serif;
  font-weight: 300;
  font-size: clamp(1.1rem, 1.9vw, 1.45rem);
  line-height: 1.35;
}

.contact-card__details {
  margin: clamp(2rem, 5vh, 3rem) 0 0;
  font-style: normal;
}

.contact-card__details p {
  margin: 0.2rem 0;
  font-family: 'Noto Sans Myanmar', 'IBM Plex Sans', Arial, sans-serif;
  font-weight: 300;
  font-size: clamp(1.18rem, 2vw, 1.65rem);
  line-height: 1.45;
}

.contact-card__status {
  margin: clamp(2.5rem, 6vh, 4rem) 0 0;
  font-family: 'Noto Sans Myanmar', 'IBM Plex Sans', Arial, sans-serif;
  font-weight: 300;
  font-size: clamp(0.92rem, 1.2vw, 1.1rem);
  line-height: 1.35;
}

@media (max-width: 900px) {
  .landing-page {
    justify-content: center;
  }

  .brand {
    width: min(88vw, 22rem);
    height: clamp(6.2rem, 24vw, 8.8rem);
  }

  .brand__gegen {
    transform: translateX(-50%);
  }

  .contact-card {
    width: min(100%, 34rem);
  }
}

@media (max-width: 560px) {
  .divider--top {
    height: 3.5rem;
    margin-bottom: 1.5rem;
  }

  .divider--middle {
    height: 2.75rem;
    margin-top: 0.85rem;
    margin-bottom: 1.8rem;
  }

  .divider--bottom {
    height: 5rem;
    margin-top: 1.6rem;
  }

  .brand {
    width: min(92vw, 18rem);
    height: 6rem;
  }

  .brand__gegen {
    left: 44%;
    font-size: clamp(2.9rem, 13vw, 4.1rem);
  }

  .brand__ueber {
    right: 0;
    font-size: clamp(2.8rem, 12vw, 3.8rem);
  }

  .contact-card h1 {
    font-size: clamp(1.85rem, 7vw, 2.45rem);
  }

  .contact-card__subtitle {
    font-size: 1rem;
  }

  .contact-card__details p {
    font-size: 1.05rem;
  }

  .contact-card__status {
    font-size: 0.9rem;
  }
}

@media (max-height: 780px) {
  .divider--top {
    height: 3.25rem;
    margin-bottom: 1.4rem;
  }

  .divider--middle {
    height: 2.8rem;
    margin-bottom: 1.8rem;
  }

  .divider--bottom {
    height: 4.6rem;
    margin-top: 1.6rem;
  }

  .contact-card__details {
    margin-top: 1.8rem;
  }

  .contact-card__status {
    margin-top: 2.1rem;
  }
}
