:root {
  --bg: #0f0f0f;
  --bg-soft: #171717;
  --text: #f5f1e8;
  --muted: #cfc6b4;
  --gold: #c6a96b;
  --border: rgba(198, 169, 107, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 48px 24px;
  background:
    linear-gradient(rgba(0,0,0,.45), rgba(0,0,0,.65)),
    url('https://images.unsplash.com/photo-1506126613408-eca07ce68773?q=80&w=1600&auto=format&fit=crop') center/cover no-repeat;
}

.overlay {
  position: absolute;
  inset: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  text-align: center;
}

.eyebrow {
  letter-spacing: 0.22em;
  font-size: 0.8rem;
  color: var(--gold);
  margin-bottom: 18px;
}

h1 {
  font-size: clamp(2.5rem, 7vw, 5rem);
  line-height: 1.05;
  margin: 0 0 20px;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-top: 0;
  margin-bottom: 18px;
}

h3 {
  margin-top: 0;
  color: var(--gold);
}

.subtitle {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto 28px;
}

.container {
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
}

.narrow {
  max-width: 760px;
}

.section {
  padding: 96px 0;
}

.section.alt {
  background: var(--bg-soft);
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.card {
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px;
  background: rgba(255,255,255,0.02);
}

.cta-group {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  transition: transform .15s ease, opacity .15s ease;
}

.btn:hover {
  transform: translateY(-1px);
  opacity: .95;
}

.btn-primary {
  background: var(--gold);
  color: #111;
  font-weight: 600;
}

.btn-secondary {
  border: 1px solid var(--border);
  color: var(--text);
}

p {
  margin-top: 0;
  color: var(--muted);
}

@media (max-width: 640px) {
  .section {
    padding: 72px 0;
  }
}
