* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: #151515;
  background:
    radial-gradient(circle at 80% 20%, rgba(190, 150, 90, 0.12), transparent 30rem),
    #f6f3ed;
}

.hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px;
}

.content {
  width: min(760px, 100%);
  text-align: center;
}

.brand {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
  letter-spacing: 0.32em;
  margin-bottom: 48px;
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(3.25rem, 10vw, 7.5rem);
  line-height: 0.95;
  letter-spacing: -0.055em;
  font-weight: 700;
}

.message {
  margin: 30px auto 0;
  max-width: 560px;
  color: #555;
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.7;
}

.line {
  width: 54px;
  height: 2px;
  background: #151515;
  margin: 38px auto 24px;
}

.domain {
  margin: 0;
  color: #666;
  font-size: 0.88rem;
  letter-spacing: 0.12em;
}

@media (max-width: 600px) {
  .hero {
    padding: 24px;
  }

  .brand {
    margin-bottom: 38px;
  }
}
