:root {
  color-scheme: dark;
  font-family: "DM Sans", sans-serif;
  color: #f8f2e8;
  background: #0d0b0b;
}

* { box-sizing: border-box; }

body {
  min-height: 100vh;
  margin: 0;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 18%, rgba(215, 169, 69, .12), transparent 34rem),
    #0d0b0b;
}

main {
  width: min(92%, 760px);
  padding: 56px 24px;
  text-align: center;
}

.logo {
  width: 136px;
  aspect-ratio: 1;
  object-fit: cover;
  margin-bottom: 28px;
}

.eyebrow {
  margin: 0 0 16px;
  color: #ddb04e;
  font-size: .77rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font: 500 clamp(2.35rem, 7vw, 4.6rem)/1.02 "Playfair Display", serif;
}

.intro {
  max-width: 590px;
  margin: 26px auto 34px;
  color: #c9c0b6;
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.7;
}

a {
  display: inline-block;
  padding: 16px 24px;
  border: 1px solid #ddb04e;
  color: #0d0b0b;
  background: #ddb04e;
  font-size: .79rem;
  font-weight: 600;
  letter-spacing: .09em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease;
}

a:hover, a:focus-visible { transform: translateY(-2px); background: #edc76d; }

@media (max-width: 520px) {
  main { padding-inline: 18px; }
  .logo { width: 112px; }
}
