:root {
  --bg: #090909;
  --ink: #f6f0e5;
  --muted: #b7ad9e;
  --gold: #c7a56a;
  --line: rgba(199, 165, 106, 0.55);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--ink);
}

body {
  min-height: 100vh;
  font-family: "Helvetica Neue", Arial, sans-serif;
  overflow-x: hidden;
}

.page {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 48px 24px 88px;
  isolation: isolate;
  background:
    radial-gradient(circle at 50% 20%, rgba(255,255,255,0.035), transparent 35%),
    linear-gradient(180deg, #0b0b0b 0%, #060606 100%);
}

.ambient {
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  filter: blur(80px);
  opacity: 0.23;
}

.ambient-one {
  width: 32rem;
  height: 32rem;
  top: -14rem;
  left: -8rem;
  background: rgba(174, 118, 54, 0.28);
}

.ambient-two {
  width: 28rem;
  height: 28rem;
  right: -10rem;
  bottom: -11rem;
  background: rgba(255, 244, 218, 0.10);
}

.hero {
  width: min(920px, 100%);
  text-align: center;
  padding: 72px 28px;
}

.eyebrow {
  font-size: 11px;
  letter-spacing: 0.34em;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 30px;
}

.wordmark {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(64px, 13vw, 150px);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: 0.13em;
  text-indent: 0.13em;
  color: #fffaf0;
  text-shadow: 0 0 40px rgba(255, 245, 226, 0.04);
}

.rule {
  width: 72px;
  height: 1px;
  margin: 42px auto 34px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.statement {
  margin: 0 auto;
  max-width: 740px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 3.5vw, 42px);
  line-height: 1.25;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.substatement {
  margin: 24px auto 0;
  max-width: 610px;
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.coming-soon {
  display: inline-flex;
  margin-top: 48px;
  padding: 13px 20px 12px;
  border: 1px solid rgba(199, 165, 106, 0.52);
  border-radius: 999px;
  color: #d8bd8b;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-indent: 0.28em;
  background: rgba(255,255,255,0.012);
  box-shadow: inset 0 0 30px rgba(199, 165, 106, 0.03);
}

.footer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 28px;
  display: flex;
  justify-content: center;
  gap: 12px;
  color: #6e675e;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.22em;
}

.footer-dot {
  color: #88724d;
}

@media (max-width: 640px) {
  .page {
    padding: 36px 18px 80px;
  }

  .hero {
    padding: 48px 6px;
  }

  .eyebrow {
    letter-spacing: 0.22em;
    line-height: 1.7;
  }

  .wordmark {
    font-size: clamp(58px, 20vw, 94px);
    letter-spacing: 0.08em;
    text-indent: 0.08em;
  }

  .statement {
    font-size: 28px;
  }

  .substatement {
    font-size: 12px;
  }

  .footer {
    gap: 8px;
    font-size: 8px;
    letter-spacing: 0.14em;
  }
}
