:root {
  color-scheme: dark;
  --black: #090c10;
  --charcoal: #12171d;
  --paper: #eeeae1;
  --muted: #b8bcc0;
  --gold: #c9a45e;
  --gold-light: #dfc482;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--black);
  color: var(--paper);
  font-family: "Montserrat", sans-serif;
}

main {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 4rem 1.5rem;
  background:
    radial-gradient(circle at 50% 34%, rgba(201, 164, 94, .12), transparent 31%),
    linear-gradient(135deg, #080a0d 0%, #12171d 52%, #080a0d 100%);
}

main::before {
  content: "";
  position: absolute;
  width: min(70vw, 760px);
  aspect-ratio: 1;
  border: 1px solid rgba(201, 164, 94, .15);
  border-radius: 50%;
  transform: rotate(-12deg);
}

.frame {
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(201, 164, 94, .22);
  pointer-events: none;
}

.holding-page {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  text-align: center;
}

.logo {
  width: min(520px, 92%);
  margin: 0 auto 2.5rem;
  border-radius: 20px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, .38);
}

.divider {
  width: 58px;
  height: 1px;
  margin: 0 auto 2.25rem;
  background: var(--gold);
}

.eyebrow, .tagline {
  margin: 0;
  color: var(--gold-light);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
}

h1 {
  margin: 1rem 0 1.25rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.6rem, 9vw, 7.2rem);
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: .95;
}

.message {
  max-width: 620px;
  margin: 0 auto 2.3rem;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.22rem);
  line-height: 1.7;
}

.contact-details {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: .6rem 1.2rem;
  margin-top: 2.2rem;
  color: var(--muted);
  font-size: .78rem;
  font-style: normal;
  letter-spacing: .08em;
}

.contact-details > * + *::before {
  content: "";
  display: inline-block;
  width: 3px;
  height: 3px;
  margin: 0 1.2rem .18rem 0;
  background: var(--gold);
  transform: rotate(45deg);
}

.contact-details a {
  color: inherit;
  text-decoration: none;
}

.contact-details a:hover,
.contact-details a:focus-visible { color: var(--gold-light); }

@media (max-width: 600px) {
  main { padding: 3.5rem 1.35rem; }
  .frame { inset: 12px; }
  .logo { margin-bottom: 2rem; border-radius: 14px; }
  .eyebrow, .tagline { letter-spacing: .16em; }
  .contact-details { flex-direction: column; gap: .5rem; }
  .contact-details > * + *::before { display: none; }
}
