:root {
  --bg: #0d1038;
  --bg-2: #12164a;
  --surface: #ffffff;
  --surface-2: #f5f7fb;
  --text: #151826;
  --muted: #5d6478;
  --line: #d9dfeb;
  --accent: #c8ae6a;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--surface);
  color: var(--text);
  line-height: 1.6;
}

a { color: inherit; }
.container { width: min(1100px, calc(100% - 2rem)); margin: 0 auto; }
.narrow { width: min(760px, 100%); }
.hero {
  background: linear-gradient(135deg, var(--bg) 0%, var(--bg-2) 100%);
  color: white;
  padding: 7rem 0 5rem;
}
.eyebrow {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}
h1, h2 { line-height: 1.1; margin: 0 0 1rem; }
h1 { font-size: clamp(2.6rem, 5vw, 4.6rem); max-width: 12ch; }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
.lead {
  max-width: 42rem;
  color: rgba(255,255,255,0.82);
  font-size: 1.1rem;
}
.cta-row {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.2rem;
  border-radius: 0.9rem;
  background: var(--accent);
  color: #1f2230;
  text-decoration: none;
  font-weight: 600;
}
.button.secondary {
  background: transparent;
  color: white;
  border: 1px solid rgba(255,255,255,0.28);
}
.section, .legal { padding: 4rem 0; }
.intro { padding-bottom: 1rem; }
.alt { background: var(--surface-2); }
.grid {
  display: grid;
  gap: 1rem;
}
.grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card {
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1.4rem;
  background: white;
}
.featured {
  border-color: rgba(200, 174, 106, 0.55);
  box-shadow: 0 18px 40px rgba(13, 16, 56, 0.08);
}
.card p, .contact p, .legal p { color: var(--muted); }
.list {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
  color: var(--muted);
}
.contact { text-align: left; }
.legal { border-top: 1px solid var(--line); }

@media (max-width: 840px) {
  .grid.three { grid-template-columns: 1fr; }
  .hero { padding-top: 5rem; }
}
