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

body {
  font-family: Arial, Helvetica, sans-serif;
  background: radial-gradient(circle at top, #1c1405 0%, #050505 45%, #000 100%);
  color: #fff;
  min-height: 100vh;
}

.page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 6%;
}

.hero {
  width: 100%;
  max-width: 1200px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.eyebrow {
  color: #d6a529;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 14px;
  margin-bottom: 18px;
}

h1 {
  font-size: clamp(42px, 7vw, 82px);
  line-height: 0.95;
  color: #f5f5f5;
  text-transform: uppercase;
}

h2 {
  margin-top: 12px;
  font-size: clamp(32px, 5vw, 58px);
  color: #d6a529;
  text-transform: uppercase;
}

.intro {
  margin-top: 24px;
  font-size: 22px;
  line-height: 1.4;
  max-width: 620px;
}

.body-text {
  margin-top: 18px;
  color: #d8d8d8;
  line-height: 1.7;
  font-size: 16px;
  max-width: 620px;
}

.tagline {
  margin-top: 28px;
  color: #d6a529;
  font-weight: bold;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.button {
  display: inline-block;
  margin-top: 28px;
  padding: 14px 26px;
  border: 1px solid #d6a529;
  color: #000;
  background: #d6a529;
  text-decoration: none;
  font-weight: bold;
  border-radius: 999px;
}

.hero-image img {
  width: 100%;
  max-width: 560px;
  display: block;
  margin: 0 auto;
  border-radius: 28px;
  box-shadow: 0 25px 80px rgba(214, 165, 41, 0.22);
}

@media (max-width: 850px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text,
  .intro,
  .body-text {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-image {
    order: -1;
  }
}
