:root {
  --background: #faf7f2;
  --foreground: #1c1917;
  --muted: #78716c;
  --burgundy: #722f37;
  --burgundy-hover: #5c262d;
  --gold: #8b6914;
  --border: #e8e0d5;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  background: radial-gradient(circle at 20% 0%, rgba(139, 105, 20, 0.1), transparent 40%), var(--background);
  color: var(--foreground);
}

.bg-glow {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 90% 10%, rgba(114, 47, 55, 0.14), transparent 35%);
  pointer-events: none;
  z-index: 0;
}

.page {
  position: relative;
  z-index: 1;
  width: min(92vw, 960px);
  margin: 0 auto;
  min-height: 100vh;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.topbar {
  padding: 0;
}

.logo {
  height: auto;
  width: clamp(180px, 35vw, 280px);
}

.eyebrow {
  margin: 0;
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

a.eyebrow {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 0;
}

a.eyebrow:visited {
  color: var(--gold);
}

a.eyebrow:hover {
  color: var(--gold);
  border-bottom: 1px solid currentColor;
}

.site-footer {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  white-space: nowrap;
}

.footer-divider {
  width: 1px;
  height: 1rem;
  background: rgba(139, 105, 20, 0.45);
}

@media (max-width: 640px) {
  .eyebrow {
    font-size: 0.82rem;
  }

  .site-footer {
    bottom: 1.5rem;
    gap: 0.65rem;
  }
}
