* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  color: #f5efe2;
  font-family: Georgia, "Times New Roman", serif;
  background:
    radial-gradient(circle at top, rgba(167, 126, 58, 0.2), transparent 34rem),
    linear-gradient(135deg, #10121f 0%, #171123 48%, #090a10 100%);
}

.page-shell {
  width: min(1100px, calc(100% - 32px));
  min-height: 100vh;
  margin: 0 auto;
  padding: 72px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
}

.hero {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: #d5a857;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 14px;
  font-size: clamp(3rem, 8vw, 5.75rem);
  line-height: 0.95;
  font-weight: 700;
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.45);
}

.subtitle {
  margin-bottom: 20px;
  color: #e8cf91;
  font-size: clamp(1.25rem, 3vw, 1.8rem);
}

.description {
  margin-bottom: 0;
  color: #d7d0c3;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.08rem;
  line-height: 1.7;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 18px;
}

.card {
  min-height: 170px;
  padding: 24px;
  border: 1px solid rgba(213, 168, 87, 0.35);
  border-radius: 8px;
  background: rgba(17, 18, 31, 0.78);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
}

.card h2 {
  margin-bottom: 12px;
  color: #f0d78f;
  font-size: 1.35rem;
}

.card p {
  margin-bottom: 0;
  color: #cfc7b8;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 24px, 1100px);
    padding: 48px 0;
    gap: 28px;
  }

  .card {
    min-height: auto;
    padding: 20px;
  }
}
