:root {
  --bg: #0f0d0b;
  --text: #f5efe7;
  --muted: #c8b8a6;
  --gold: #c99b63;
  --dark-gold: #8f6638;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
}

.page {
  min-height: 100vh;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  background:
    radial-gradient(circle at top right, rgba(201, 155, 99, 0.22), transparent 34%),
    radial-gradient(circle at bottom left, rgba(143, 102, 56, 0.22), transparent 38%),
    linear-gradient(135deg, #15110e, #090807);
}

.content {
  max-width: 760px;
  text-align: center;
}

.label {
  margin: 0 0 20px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 13px;
  font-weight: 700;
}

h1 {
  margin: 0;
  font-size: clamp(58px, 11vw, 130px);
  line-height: 0.95;
  letter-spacing: -0.06em;
  font-weight: 800;
}

.subtitle {
  max-width: 680px;
  margin: 26px auto 0;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.25;
  color: var(--text);
}

.line {
  width: 90px;
  height: 2px;
  background: var(--gold);
  margin: 36px auto;
}

.text {
  max-width: 560px;
  margin: 0 auto 34px;
  font-size: 18px;
  line-height: 1.7;
  color: var(--muted);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  border-radius: 999px;
  background: var(--gold);
  color: #120d08;
  font-weight: 800;
  text-decoration: none;
  transition: 0.2s ease;
}

.button:hover {
  background: #e0b178;
  transform: translateY(-2px);
}

@media (max-width: 520px) {
  .hero {
    padding: 34px 18px;
  }

  .text {
    font-size: 16px;
  }

  .button {
    width: 100%;
  }
}