:root {
  --ink: #f7f0df;
  --muted: #cbbf9f;
  --dark: #15110d;
  --panel: rgba(30, 24, 18, 0.82);
  --line: rgba(247, 240, 223, 0.18);
  --gold: #c99a45;
  --rust: #7c3f27;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(201, 154, 69, 0.22), transparent 32rem),
    radial-gradient(circle at bottom right, rgba(124, 63, 39, 0.34), transparent 34rem),
    linear-gradient(135deg, #100d0a 0%, #201810 55%, #0e0c0a 100%);
}

.page-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem;
}

.hero-card {
  width: min(100%, 860px);
  padding: clamp(2rem, 6vw, 5rem);
  border: 1px solid var(--line);
  border-radius: 32px;
  background: var(--panel);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.38);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-card::before,
.hero-card::after {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(201, 154, 69, 0.18);
  border-radius: 24px;
  pointer-events: none;
}

.hero-card::after {
  inset: auto 50%;
  top: -4rem;
  width: 1px;
  height: 8rem;
  background: linear-gradient(var(--gold), transparent);
  border: 0;
}

.monogram {
  width: 92px;
  height: 92px;
  margin: 0 auto 1.5rem;
  display: grid;
  place-items: center;
  border: 2px solid var(--gold);
  border-radius: 50%;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2rem;
  color: var(--gold);
  letter-spacing: -0.08em;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
  font-weight: 700;
}

h1 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3.3rem, 9vw, 7rem);
  line-height: 0.92;
  letter-spacing: -0.055em;
}

.tagline {
  margin: 1.25rem 0 0;
  font-size: clamp(1.4rem, 4vw, 2.4rem);
  color: var(--gold);
  font-weight: 800;
}

.intro {
  max-width: 680px;
  margin: 1.5rem auto 0;
  color: var(--muted);
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  line-height: 1.7;
}

.links {
  margin-top: 2.2rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.8rem 1.25rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease;
}

.button:hover { transform: translateY(-2px); }

.primary {
  color: #15110d;
  background: var(--gold);
}

.secondary {
  color: var(--ink);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.coming-soon {
  margin: 2rem 0 0;
  color: rgba(247, 240, 223, 0.72);
  font-size: 0.95rem;
}

@media (max-width: 560px) {
  .page-shell { padding: 1rem; }
  .hero-card { border-radius: 24px; }
  .button { width: 100%; }
}
