:root {
  --logo-bg: #c2b59b;
}

* {
  box-sizing: border-box;
}

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

body {
  min-height: 100vh;
  margin: 0;
  background: var(--logo-bg);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: geometricPrecision;
}

.page-shell {
  min-height: 100vh;
  margin: 0;
  padding: clamp(18px, 5vw, 64px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-logo {
  display: block;
  width: min(92vw, 900px);
  max-height: 88vh;
  object-fit: contain;
}
