:root {
  --bg: #0f0d0b;
  --bg-soft: #171411;
  --text: #f2ece5;
  --muted: #b6a99a;
  --accent: #c98d4b;
  --card: #1f1a15;
  --line: #2c241c;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top right, #2a1f16 0%, var(--bg) 40%);
  line-height: 1.6;
}

.container { width: min(1100px, 92%); margin: 0 auto; }
.site-header {
  position: sticky;
  top: 0;
  backdrop-filter: blur(8px);
  background: rgba(15, 13, 11, 0.75);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; justify-content: space-between; align-items: center; padding: 0.85rem 0; }
.logo { font-family: "Playfair Display", serif; font-size: 1.25rem; letter-spacing: 0.3px; }
nav a { color: var(--muted); text-decoration: none; margin-left: 1rem; }
nav a:hover { color: var(--text); }

.hero { padding: 4.2rem 0 3rem; }
.hero-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 2rem; align-items: center; }
.eyebrow { color: var(--accent); font-weight: 600; letter-spacing: 0.4px; }
h1, h2, h3 { font-family: "Playfair Display", serif; line-height: 1.2; margin-top: 0; }
h1 { font-size: clamp(2rem, 5vw, 3.4rem); margin-bottom: 1rem; }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: 1rem; }
.lead { color: var(--muted); max-width: 60ch; }

.cta-row { margin-top: 1.2rem; display: flex; gap: 1rem; align-items: center; }
button, .ghost {
  border-radius: 999px;
  padding: 0.75rem 1.1rem;
  border: 1px solid var(--line);
  font-weight: 600;
}
button { background: var(--accent); color: #1b120a; border: none; }
.ghost { color: var(--text); text-decoration: none; }

.hero-card {
  background: linear-gradient(180deg, #251d16, var(--card));
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.2rem;
}
.muted { color: var(--muted); font-size: 0.93rem; }

.section { padding: 2.8rem 0; }
.section.alt { background: rgba(255,255,255,0.02); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.cards article {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(0,0,0,0.15);
  padding: 1rem;
}

.site-footer { border-top: 1px solid var(--line); padding: 1.4rem 0; margin-top: 1.2rem; }
.foot { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; color: var(--muted); }
.foot a { color: var(--text); }

@media (max-width: 880px) {
  .hero-grid, .cards { grid-template-columns: 1fr; }
  nav { display: none; }
}
