:root {
  --brand-green: #849943;
  --brand-cream: #f2e6ce;
  --brand-brown: #1a1311;
  --peek-angle: -45deg;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow: hidden;
  background: var(--brand-cream);
}

.landing {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  background: var(--brand-cream);
}

.status-text {
  position: absolute;
  left: clamp(1.25rem, 5vw, 4rem);
  bottom: clamp(1rem, 4vw, 3rem);
  z-index: 2;
  margin: 0;
  color: var(--brand-brown);
  font-family: "Kirang Haerang", "Comic Sans MS", cursive;
  font-size: clamp(1.35rem, 2.6vw, 2.4rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.03em;
}

.logo-peek {
  position: absolute;
  top: 56%;
  right: -25vh;
  height: min(68vh, 43rem);
  margin: 0;
  transform: translateY(-50%) rotate(var(--peek-angle));
  transform-origin: 52% 52%;
  pointer-events: none;
}

.logo-peek img {
  display: block;
  width: auto;
  height: 100%;
}

@media (max-width: 760px) {
  .status-text {
    left: 1.1rem;
    bottom: max(1rem, env(safe-area-inset-bottom));
    font-size: clamp(1.2rem, 7vw, 1.85rem);
  }

  .logo-peek {
    top: 58%;
    right: -19vh;
    height: min(60vh, 30rem);
  }
}