:root {
  --bg: #0b1220;
  --surface: #111a2d;
  --text: #edf1fa;
  --muted: #b4bfd4;
  --accent: #b9975b;
  --accent-dark: #a4844f;
  --border: #26324a;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top right, #13203a 0%, var(--bg) 55%);
}
.container { width: min(1120px, 92vw); margin: 0 auto; }
.site-header { border-bottom: 1px solid var(--border); background: rgba(11,18,32,.92); position: sticky; top: 0; backdrop-filter: blur(8px); z-index: 20; }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; min-height: 74px; }
.brand { color: var(--text); text-decoration: none; font-weight: 700; letter-spacing: .2px; }
.nav-links { list-style: none; display: flex; gap: 1rem; align-items: center; margin: 0; padding: 0; }
a { color: var(--text); text-decoration: none; }
a.active { color: var(--accent); }

.hero { padding: 5.5rem 0 4rem; }
.hero-grid { display: grid; gap: 2rem; grid-template-columns: 2fr 1fr; align-items: start; }
.eyebrow { color: var(--accent); text-transform: uppercase; letter-spacing: .12em; font-size: .78rem; }
h1 { font-family: "Cormorant Garamond", "Georgia", serif; font-size: clamp(2.3rem, 5.2vw, 4rem); line-height: 1.04; margin: .4rem 0 1rem; }
h2 { font-family: "Cormorant Garamond", "Georgia", serif; font-size: 2rem; margin: 0 0 1rem; }
.lead { color: var(--muted); line-height: 1.7; max-width: 68ch; }
.section-subtitle { margin-top: -.25rem; margin-bottom: 1.15rem; }
.hero-card, .card { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 1.2rem; }
.hero-cta { display: flex; gap: .8rem; margin-top: 1.25rem; flex-wrap: wrap; }
.section { padding: 3.2rem 0 4rem; }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.card-grid-4 { grid-template-columns: repeat(4, 1fr); }
.card p, .prose p, .muted, .timeline p { color: var(--muted); line-height: 1.65; }
.timeline { display: grid; gap: 1rem; grid-template-columns: repeat(2, 1fr); }

.execution-focus .focus-item { border-top: 1px solid var(--border); padding-top: .8rem; margin-top: .8rem; }
.execution-focus .focus-item:first-of-type { border-top: none; padding-top: 0; margin-top: 0; }
.execution-focus span { display: block; color: var(--muted); font-size: .85rem; text-transform: uppercase; letter-spacing: .08em; }
.execution-focus strong { display: block; margin-top: .2rem; font-size: .98rem; font-weight: 600; }

.who-grid { grid-template-columns: repeat(3, 1fr); }
.compact { padding: .9rem 1rem; font-weight: 600; min-height: auto; display: flex; align-items: center; }

.btn { background: var(--accent); color: #151515; padding: .66rem .98rem; border-radius: 9px; font-weight: 700; border: 1px solid var(--accent); cursor: pointer; }
.btn:hover { background: var(--accent-dark); border-color: var(--accent-dark); }
.btn-outline { background: transparent; color: var(--text); border: 1px solid var(--border); }
.form-wrap { max-width: 760px; }
.deal-form { display: grid; gap: 1rem; }
label { display: grid; gap: .45rem; font-weight: 600; }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--border);
  background: #0f1729;
  color: var(--text);
  border-radius: 10px;
  padding: .68rem .74rem;
  font: inherit;
}
.final-cta { display: flex; gap: .8rem; }
.site-footer { border-top: 1px solid var(--border); padding: 2rem 0; color: var(--muted); background: rgba(5,10,18,.35); }
.footer-grid { display: grid; gap: .5rem; }
.prose ul { color: var(--muted); line-height: 1.6; padding-left: 1.2rem; }
.prose li { margin: .25rem 0; }
.deal-form .muted { margin-top: .25rem; }

@media (max-width: 980px) {
  .hero-grid, .card-grid, .timeline, .who-grid, .card-grid-4 { grid-template-columns: 1fr; }
  .nav-links { flex-wrap: wrap; justify-content: flex-end; }
  .final-cta { flex-direction: column; }
}
