:root {
  color-scheme: dark;
  --background: #080705;
  --background-soft: #15130f;
  --gold: #d2a93d;
  --text: #f2ead5;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background:
    radial-gradient(circle at 50% 42%, rgba(210, 169, 61, 0.16), transparent 28rem),
    linear-gradient(180deg, #1a1813 0%, var(--background) 68%, #030302 100%);
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
}

.site-shell {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: clamp(16px, 4vw, 48px);
}

.brand-stage {
  width: min(100%, 980px);
  display: grid;
  place-items: center;
}

.brand-image {
  width: min(100%, 78vh, 920px);
  max-height: calc(100svh - clamp(32px, 8vw, 96px));
  height: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.42));
}

@media (max-width: 640px) {
  .site-shell {
    align-items: center;
    padding: 12px;
  }

  .brand-image {
    width: min(100%, 88vh);
    max-height: calc(100svh - 24px);
  }
}
