:root {
  --ink: #172033;
  --muted: #5e6b7a;
  --line: #dfe6ec;
  --paper: #ffffff;
  --soft: #f6f1e8;
  --gold: #c48a25;
  --gold-dark: #936414;
  --navy: #0f243d;
  --shadow: 0 20px 50px rgba(15, 36, 61, 0.12);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}
a { color: inherit; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.narrow { max-width: 850px; }
.section-pad { padding: 96px 0; }
.white { background: var(--paper); }
.soft { background: var(--soft); }
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; font-weight: 800; color: var(--navy); }
.brand-mark {
  width: 42px; height: 42px; border-radius: 50%;
  display: inline-grid; place-items: center;
  background: linear-gradient(135deg, var(--gold), #f0c66c);
  color: white;
  box-shadow: 0 10px 22px rgba(196, 138, 37, 0.25);
}
.brand-text { letter-spacing: -0.02em; }
.nav-links { display: flex; align-items: center; gap: 26px; font-size: 0.95rem; font-weight: 600; }
.nav-links a { text-decoration: none; color: var(--muted); }
.nav-links a:hover { color: var(--navy); }
.nav-cta { color: var(--gold-dark) !important; }
.menu-toggle { display: none; border: 0; background: transparent; font-size: 1.7rem; cursor: pointer; color: var(--navy); }
.hero {
  color: white;
  background:
    radial-gradient(circle at 82% 20%, rgba(196, 138, 37, 0.35), transparent 28%),
    linear-gradient(135deg, #0f243d, #172033 62%, #2d2415);
}
.hero-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 54px; align-items: center; }
.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 800;
}
.hero h1, h2 { margin: 0 0 22px; line-height: 1.08; letter-spacing: -0.045em; }
.hero h1 { font-size: clamp(2.7rem, 6vw, 5.25rem); max-width: 920px; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); color: var(--navy); }
h3 { margin: 0 0 18px; font-size: 1.4rem; color: var(--navy); }
p { margin: 0 0 16px; }
.hero-lead { color: rgba(255,255,255,0.78); font-size: 1.2rem; max-width: 680px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 22px; border-radius: 999px; text-decoration: none; font-weight: 800; }
.button.primary { background: var(--gold); color: white; }
.button.secondary { border: 1px solid rgba(255,255,255,0.28); color: white; }
.hero-card { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.18); border-radius: 28px; padding: 28px; box-shadow: var(--shadow); }
.stat { padding: 22px 0; border-bottom: 1px solid rgba(255,255,255,0.16); }
.stat:last-child { border-bottom: 0; }
.stat-number { display: block; font-size: 2rem; font-weight: 800; color: #f0c66c; }
.stat-label { display: block; color: rgba(255,255,255,0.76); }
.section-heading { max-width: 820px; margin-bottom: 38px; }
.cards { display: grid; gap: 24px; }
.two-col { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card { background: white; padding: 34px; border-radius: 26px; border: 1px solid rgba(15,36,61,0.08); box-shadow: var(--shadow); }
ul { margin: 0; padding-left: 20px; color: var(--muted); }
li + li { margin-top: 10px; }
.approach-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 52px; align-items: start; }
.steps { display: grid; gap: 18px; }
.step { border-left: 4px solid var(--gold); padding: 20px 24px; background: #fbfcfd; border-radius: 0 22px 22px 0; }
.step span { display: block; color: var(--gold-dark); font-weight: 800; margin-bottom: 6px; }
.step strong { display: block; color: var(--navy); font-size: 1.1rem; margin-bottom: 4px; }
.step p { color: var(--muted); margin-bottom: 0; }
.contact { background: linear-gradient(135deg, var(--soft), #ffffff); }
.contact-card { display: grid; grid-template-columns: 1fr 0.78fr; gap: 34px; align-items: center; background: var(--navy); color: white; border-radius: 34px; padding: clamp(28px, 6vw, 58px); box-shadow: var(--shadow); }
.contact-card h2 { color: white; }
.contact-card p { color: rgba(255,255,255,0.76); }
.contact-details { background: rgba(255,255,255,0.1); border-radius: 22px; padding: 26px; }
.contact-details a { color: #f0c66c; }
.small-note { font-size: 0.86rem; opacity: 0.75; }
.site-footer { background: #0b1727; color: rgba(255,255,255,0.72); padding: 28px 0; }
.footer-inner { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer-inner a { color: white; text-decoration: none; }
@media (max-width: 820px) {
  .menu-toggle { display: block; }
  .nav { min-height: 68px; }
  .nav-links {
    position: absolute; left: 20px; right: 20px; top: 72px;
    display: none; flex-direction: column; align-items: stretch;
    background: white; border: 1px solid var(--line); border-radius: 18px; padding: 18px;
    box-shadow: var(--shadow);
  }
  .nav-links.is-open { display: flex; }
  .hero-grid, .two-col, .approach-grid, .contact-card { grid-template-columns: 1fr; }
  .section-pad { padding: 72px 0; }
}
@media (max-width: 520px) {
  .container, .nav { width: min(100% - 28px, 1120px); }
  .brand-text { font-size: 0.98rem; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .card { padding: 26px; }
}
