:root {
  color-scheme: light;
  --card: rgba(13, 18, 28, 0.5);
  --text: #f6efe4;
  --muted: rgba(246, 239, 228, 0.82);
  --accent: #ffb26b;
  --border: rgba(255, 255, 255, 0.16);
}

* {
  box-sizing: border-box;
}

body {
  position: relative;
  margin: 0;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--text);
  background: #0c1118;
  overflow: hidden;
}

.backdrop {
  position: fixed;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 9, 14, 0.18), rgba(6, 9, 14, 0.68)),
    radial-gradient(circle at 50% 72%, rgba(255, 173, 92, 0.18), transparent 28%),
    url("ranch-background.png") center center / cover no-repeat;
  transform: scale(1.03);
}

.backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 14, 22, 0.12), rgba(10, 14, 22, 0.32));
}

.hero {
  position: relative;
  z-index: 1;
  width: min(640px, 100%);
  padding: 48px 32px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--card);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  text-align: left;
}

.eyebrow {
  margin: 0 0 16px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

h1 {
  margin: 0;
  font-size: clamp(2.4rem, 7vw, 4.8rem);
  line-height: 1;
  max-width: 10ch;
}

.copy {
  margin: 20px 0 0;
  max-width: 36ch;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--muted);
}

.note {
  margin-top: 28px;
  font-style: italic;
  color: rgba(255, 228, 202, 0.92);
}

@media (max-width: 640px) {
  body {
    align-items: end;
    padding: 16px;
  }

  .hero {
    padding: 32px 24px;
    border-radius: 20px;
  }

  h1 {
    max-width: 12ch;
  }
}
