:root {
  --background: #e5dfb7;
  --text: #494846;
  --text-soft: #625f58;
  --accent: #3f3f3d;
  --focus: #2f2f2d;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--background);
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 16% 18%, rgba(255, 255, 255, 0.22), transparent 22rem),
    var(--background);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-shell {
  position: relative;
  display: grid;
  min-height: 100vh;
  min-height: 100svh;
  place-items: center;
  padding: clamp(2rem, 7vw, 5rem) 1.25rem;
  isolation: isolate;
}

.site-shell::before,
.site-shell::after {
  position: fixed;
  z-index: -1;
  display: block;
  width: clamp(5rem, 14vw, 9rem);
  height: clamp(8rem, 20vw, 13rem);
  border: 1px solid rgba(73, 72, 70, 0.12);
  border-radius: 100% 0 100% 0;
  content: "";
  opacity: 0.58;
  transform: rotate(22deg);
}

.site-shell::before {
  right: clamp(1rem, 5vw, 4.5rem);
  bottom: clamp(1rem, 7vw, 4.75rem);
}

.site-shell::after {
  top: clamp(1rem, 7vw, 4.5rem);
  left: clamp(1rem, 5vw, 4rem);
  width: clamp(3.75rem, 10vw, 6.5rem);
  height: clamp(6rem, 16vw, 10rem);
  opacity: 0.34;
  transform: rotate(202deg);
}

.construction-panel {
  width: min(100%, 680px);
  text-align: center;
  animation: fade-in 700ms ease-out both;
}

.brand-logo {
  display: block;
  width: min(100%, 420px);
  height: auto;
  margin: 0 auto;
}

.content {
  margin-top: clamp(1.8rem, 4vw, 2.75rem);
}

h1 {
  margin: 0;
  color: var(--accent);
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0;
  text-transform: uppercase;
}

p {
  max-width: 32rem;
  margin: 0.85rem auto 0;
  color: var(--text-soft);
  font-size: clamp(1rem, 2vw, 1.12rem);
}

.content a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  margin-top: 1.35rem;
  padding: 0.4rem 0;
  color: var(--focus);
  font-size: clamp(0.98rem, 2vw, 1.06rem);
  font-weight: 700;
  text-decoration-color: rgba(63, 63, 61, 0.36);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.3em;
  transition: color 180ms ease, text-decoration-color 180ms ease;
}

.content a:hover,
.content a:focus-visible {
  color: #242423;
  text-decoration-color: currentColor;
}

.content a:focus-visible {
  outline: 2px solid rgba(47, 47, 45, 0.5);
  outline-offset: 0.35rem;
}

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(0.6rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }
}

@media (max-width: 640px) {
  .site-shell {
    padding: 2rem 1.15rem;
  }

  .brand-logo {
    width: min(100%, 280px);
  }

  .content {
    margin-top: 1.55rem;
  }

  p {
    margin-top: 0.75rem;
  }

  .site-shell::before {
    right: -2.6rem;
    bottom: 1rem;
  }

  .site-shell::after {
    top: 1rem;
    left: -2.2rem;
  }
}

@media (max-width: 380px) {
  .brand-logo {
    width: min(100%, 240px);
  }
}
