:root {
  --bg: #0c0f14;
  --fg: #e8ecf1;
  --muted: #9aa3ad;
  --accent: #c9a227;
  --glow: rgba(201, 162, 39, 0.12);
}

* {
  box-sizing: border-box;
}

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

body {
  font-family: "Outfit", system-ui, sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  overflow-x: hidden;
}

.bg {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, var(--glow), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 100%, rgba(80, 120, 180, 0.08), transparent 50%),
    var(--bg);
  pointer-events: none;
  z-index: 0;
}

.wrap {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: clamp(2rem, 6vw, 4rem);
  max-width: 36rem;
  margin: 0 auto;
  animation: rise 0.9s ease-out both;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.eyebrow {
  margin: 0 0 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  align-items: center;
  text-align: center;
  color: var(--accent);
}

.eyebrow-brand {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow-sub {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: none;
  color: var(--muted);
}

.title {
  margin: 0 0 1rem;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.75rem, 5vw, 2.35rem);
  font-weight: 500;
  line-height: 1.2;
  font-variation-settings: "opsz" 72;
}

.lead {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 36ch;
}

.contact {
  margin: 0 0 2rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.contact a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(201, 162, 39, 0.45);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.contact a:hover {
  color: #e4c45c;
  border-bottom-color: #e4c45c;
}

.badge {
  display: inline-block;
  margin: 0;
  padding: 0.45rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bg);
  background: linear-gradient(135deg, #d4af37, #b8922a);
  border-radius: 999px;
  box-shadow: 0 8px 32px rgba(201, 162, 39, 0.25);
}
