:root {
  --onyx: #0E0E10;
  --ivory: #F5F1EA;
  --charcoal: #1A1A1A;
  --gold: #B89968;
  --gold-soft: #D4BA8A;
  --muted: #8A8378;
  --red-dot: #C44536;
  --rule: #2A2A2C;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  height: 100%;
  width: 100%;
  background: var(--onyx);
  color: var(--ivory);
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.hero {
  min-height: 100vh;
  width: 100%;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(184,153,104,0.08) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 80%, rgba(184,153,104,0.05) 0%, transparent 50%),
    linear-gradient(180deg, #0E0E10 0%, #08080A 100%);
  display: flex;
  flex-direction: column;
  padding: 2.5rem 3rem;
  position: relative;
  overflow: hidden;
}

/* subtle marble veining via SVG overlay */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='1200' height='800' viewBox='0 0 1200 800'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1   0 0 0 0 1   0 0 0 0 1   0 0 0 0.03 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity: 0.6;
  pointer-events: none;
}

.center {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 2rem 1rem;
  gap: 0;
}

.wordmark {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 3rem;
}

.brand {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  letter-spacing: 0.10em;
  color: var(--ivory);
  line-height: 1;
}

.brand .dot {
  color: var(--red-dot);
}

.tag {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: clamp(0.7rem, 1vw, 0.85rem);
  letter-spacing: 0.42em;
  color: var(--muted);
}

.rule {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 2.5rem;
  opacity: 0.85;
}

.comingsoon {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  color: var(--gold);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.footnote {
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  color: var(--muted);
  text-transform: uppercase;
  padding-top: 1.5rem;
  position: relative;
  z-index: 2;
}

@media (max-width: 640px) {
  .hero { padding: 1.5rem 1.25rem; }
  .wordmark { margin-bottom: 2.25rem; gap: 0.45rem; }
  .rule { margin-bottom: 2rem; }
  .footnote { font-size: 0.7rem; letter-spacing: 0.14em; }
}
