:root {
  --ink: #214c63;
  --cream: #f7f1e7;
}

* {
  box-sizing: border-box;
}

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

body {
  min-height: 100%;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(
      circle at 18% 16%,
      rgba(255, 255, 255, 0.62),
      transparent 30rem
    ),
    var(--cream);
  font-family: Arial, Helvetica, sans-serif;
}

.holding-page {
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: clamp(2rem, 8vw, 6rem) 1.5rem;
}

.holding-card {
  width: min(100%, 44rem);
  display: grid;
  justify-items: center;
  text-align: center;
}

.logo-frame {
  width: clamp(11.5rem, 34vw, 17.5rem);
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 1.15rem;
  box-shadow: 0 1.5rem 4.5rem rgba(33, 76, 99, 0.13);
  animation: arrive 900ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.brand-mark {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.copy {
  margin-top: clamp(2.15rem, 5vw, 3.25rem);
  animation: arrive 900ms 130ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 8vw, 4.6rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.95;
}

.announcement {
  margin: 1rem 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.2rem, 3vw, 1.55rem);
  font-style: italic;
  line-height: 1.4;
}

.contact {
  margin: clamp(2rem, 5vw, 3rem) 0 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.75;
  text-transform: uppercase;
}

.contact span,
.contact a {
  display: inline-block;
}

.contact a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.35em;
  transition: color 180ms ease, text-decoration-color 180ms ease;
}

.contact a:hover {
  color: #6f6a60;
}

.contact a:focus-visible {
  border-radius: 0.1rem;
  outline: 2px solid var(--ink);
  outline-offset: 0.45rem;
}

@keyframes arrive {
  from {
    opacity: 0;
    transform: translateY(1rem);
  }

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

@media (max-width: 32rem) {
  .contact span,
  .contact a {
    display: block;
  }
}

@media (prefers-reduced-motion: reduce) {
  .logo-frame,
  .copy {
    animation: none;
  }
}
