:root {
  color-scheme: dark;
  --paper: #f2ead2;
  --ink: #020202;
  --muted: rgba(242, 234, 210, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--ink);
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: var(--paper);
  background:
    radial-gradient(circle at 50% 48%, rgba(216, 167, 67, 0.045), transparent 38%),
    radial-gradient(circle at 50% 112%, rgba(242, 234, 210, 0.035), transparent 44%),
    var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  text-rendering: geometricPrecision;
}

.page-shell {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 100vh;
  padding: clamp(72px, 10vw, 112px) clamp(24px, 8vw, 132px);
  place-items: center;
}

.brand-statement {
  width: min(100%, 1100px);
}

.logo-frame {
  width: 100%;
}

.logo-frame img {
  display: block;
  width: 100%;
  height: auto;
  filter: brightness(0.88) saturate(0.82) contrast(0.94);
  opacity: 0.94;
  user-select: none;
}

footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.4;
}

footer {
  position: fixed;
  right: 24px;
  bottom: clamp(12px, 2.2vw, 26px);
  left: 24px;
  z-index: 2;
  text-align: center;
}

@media (max-width: 720px) {
  body {
    background:
      radial-gradient(circle at 50% 48%, rgba(216, 167, 67, 0.052), transparent 42%),
      var(--ink);
  }

  .page-shell {
    padding: 76px 18px 94px;
    place-items: center;
  }

  .brand-statement {
    width: min(100%, 640px);
  }

  .logo-frame img {
    width: 100%;
  }
}

@media (orientation: landscape) and (max-height: 520px) {
  .page-shell {
    min-height: 100svh;
    padding-top: 34px;
    padding-bottom: 58px;
  }

  footer {
    bottom: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}
