:root {
  --ink: #18130c;
  --gold: #c6943b;
  --paper: #f8f4eb;
  --paper-deep: #efe5d3;
}

* {
  box-sizing: border-box;
}

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

body {
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
}

.landing {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: 100svh;
  grid-template-rows: 1fr auto;
  overflow: hidden;
  padding: clamp(28px, 5vw, 72px);
  background:
    linear-gradient(rgba(198, 148, 59, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(198, 148, 59, 0.055) 1px, transparent 1px),
    radial-gradient(circle at 50% 25%, #fffdf8 0, var(--paper) 54%, var(--paper-deep) 100%);
  background-size: 48px 48px, 48px 48px, auto;
}

.content {
  align-self: center;
  display: flex;
  width: min(100%, 980px);
  margin: auto;
  align-items: center;
  justify-content: center;
  gap: clamp(38px, 7vw, 88px);
}

.logo-frame {
  width: clamp(230px, 33vw, 390px);
  aspect-ratio: 1;
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: 50%;
  background: #000;
  box-shadow:
    0 30px 80px rgba(76, 51, 13, 0.22),
    0 0 0 1px rgba(198, 148, 59, 0.35),
    0 0 0 12px rgba(255, 255, 255, 0.56);
}

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

.message {
  max-width: 440px;
}

.eyebrow {
  display: block;
  margin-bottom: 18px;
  color: #8c641f;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.55rem, 5.1vw, 5rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

p {
  margin: 25px 0 0;
  color: rgba(24, 19, 12, 0.66);
  font-size: clamp(1rem, 1.7vw, 1.18rem);
  line-height: 1.7;
}

footer {
  justify-self: center;
  padding-top: 42px;
  color: rgba(24, 19, 12, 0.5);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.glow {
  position: absolute;
  z-index: -1;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(198, 148, 59, 0.14);
  border-radius: 50%;
}

.glow::after {
  position: absolute;
  inset: 34px;
  content: "";
  border: 1px solid rgba(198, 148, 59, 0.12);
  border-radius: inherit;
}

.glow-left {
  bottom: -230px;
  left: -170px;
}

.glow-right {
  top: -240px;
  right: -130px;
}

@media (max-width: 760px) {
  .landing {
    padding: 36px 24px 28px;
  }

  .content {
    flex-direction: column;
    gap: 44px;
    text-align: center;
  }

  .logo-frame {
    width: min(66vw, 310px);
  }

  .message {
    max-width: 520px;
  }

  .eyebrow {
    margin-bottom: 15px;
  }

  p {
    margin-top: 18px;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .logo-frame {
    animation: arrive 900ms cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .message {
    animation: arrive 900ms 120ms cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  @keyframes arrive {
    from {
      opacity: 0;
      transform: translateY(18px);
    }
  }
}
