:root {
  --bg: #f3f5f8;
  --surface: rgba(255,255,255,0.88);
  --surface-strong: #ffffff;
  --text: #0f172a;
  --muted: #526074;
  --line: rgba(148,163,184,0.24);
  --navy: #0f172a;
  --navy-soft: #1e293b;
  --gold: #c7a23a;
  --gold-soft: #e8d39a;
  --shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
  --radius: 28px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top left, rgba(199,162,58,0.1), transparent 28%), linear-gradient(180deg, #f8fafc, #ecf1f6);
  line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
.container { width: min(1180px, calc(100% - 2rem)); margin: 0 auto; }
.narrow { width: min(760px, 100%); }
.site-header {
  position: sticky; top: 0; z-index: 20;
  background: rgba(248,250,252,0.78);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(15,23,42,0.06);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1rem 0; }
.brand-logo { width: 260px; max-width: 100%; height: auto; display: block; }
.nav-links { display: flex; gap: 1.2rem; align-items: center; font-weight: 600; color: var(--muted); }
.nav-links a:hover, .nav-links .is-active { color: var(--navy); }
.hero { padding: 5rem 0 4rem; }
.hero-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 2rem; align-items: center; }
.eyebrow, .section-kicker { margin: 0 0 0.8rem; text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.78rem; font-weight: 700; color: #9a7a1e; }
.section-kicker { color: var(--gold); }
h1, h2, h3 { margin: 0 0 0.8rem; line-height: 1.08; }
h1 { font-size: clamp(2.6rem, 6vw, 4.8rem); }
h2 { font-size: clamp(1.9rem, 3.8vw, 3rem); }
h3 { font-size: 1.28rem; }
.lead { font-size: 1.14rem; color: rgba(255,255,255,0.78); max-width: 60ch; }
.lead.dark { color: var(--muted); }
.hero {
  background: linear-gradient(180deg, rgba(15,23,42,0.96), rgba(30,41,59,0.94));
  color: white;
}
.hero-panel {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  padding: 2rem;
}
.hero-panel ul { margin: 0; padding-left: 1.2rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.8rem; }
.button {
  display: inline-flex; align-items: center; justify-content: center; min-height: 50px;
  padding: 0.88rem 1.3rem; border-radius: 999px; background: var(--gold); color: #241a00;
  font-weight: 700; box-shadow: var(--shadow);
}
.button:hover { background: var(--gold-soft); }
.button-small { min-height: 42px; padding: 0.68rem 1rem; }
.button-ghost { background: transparent; color: white; border: 1px solid rgba(255,255,255,0.22); box-shadow: none; }
.button-ghost:hover { background: rgba(255,255,255,0.08); }
.button-light { background: white; color: var(--navy); }
.section { padding: 4.5rem 0; }
.section-alt { background: rgba(255,255,255,0.5); }
.section-dark { background: var(--navy); color: white; }
.two-col { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 2rem; }
.section-heading { margin-bottom: 2rem; max-width: 56rem; }
.cards { display: grid; gap: 1.3rem; }
.three-up { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card {
  background: var(--surface-strong); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.7rem; box-shadow: var(--shadow);
}
.card p { color: var(--muted); }
.accent-card { background: linear-gradient(180deg, #fffdf6, #ffffff); }
.cta-strip { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.page-hero { padding: 4rem 0 1.5rem; }
.site-footer { background: #e9eef4; border-top: 1px solid rgba(15,23,42,0.06); }
.footer-inner { display: flex; justify-content: space-between; gap: 1rem; padding: 1.5rem 0; flex-wrap: wrap; color: var(--muted); }
@media (max-width: 900px) {
  .hero-grid, .two-col, .three-up, .cta-strip, .nav { grid-template-columns: 1fr; display: grid; }
  .nav-links { flex-wrap: wrap; }
  .brand-logo { width: 220px; }
}
@media (max-width: 640px) {
  .nav-links { gap: 0.8rem; font-size: 0.95rem; }
  h1 { font-size: 2.4rem; }
  .card, .hero-panel { padding: 1.4rem; }
}
