:root {
  --camel: #C6A574;
  --camel-light: #D9BF95;
  --seal-gold: #D9B662;
  --ivory: #F8F1E2;
  --espresso: #161009;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  background:
    radial-gradient(ellipse at 50% 42%, #241a0f 0%, var(--espresso) 62%),
    var(--espresso);
  color: var(--ivory);
  font-family: 'Jost', sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Inset frame for a bespoke, considered feel */
.frame {
  position: fixed;
  inset: 22px;
  border: 1px solid rgba(198, 165, 116, 0.35);
  pointer-events: none;
  z-index: 1;
}

.hero {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1.5rem;
  max-width: 640px;
  animation: rise 1.1s ease-out both;
}

.logo {
  width: min(72vw, 440px);
  height: auto;
  margin-bottom: 2.5rem;
}

.eyebrow {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 0.82rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--seal-gold);
  margin-bottom: 2.25rem;
}

.instagram {
  display: inline-flex;
  color: var(--camel-light);
  opacity: 0.85;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.instagram:hover,
.instagram:focus-visible {
  opacity: 1;
  color: var(--seal-gold);
}

.instagram svg {
  width: 20px;
  height: 20px;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero {
    animation: none;
  }
}

@media (max-width: 420px) {
  .frame {
    inset: 14px;
  }
}
