:root {
  --primary: #0B3A6E;
  --accent: #C9A227;
  --light: #ffffff;
  --text: #0b132b;
  --muted: #4f5d75;
  --radius: 16px;
  --shadow: 0 10px 20px rgba(0,0,0,.08);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text); background: #f7f9fc; line-height: 1.6;
}
.container { width: min(1200px, 92%); margin: 0 auto; }
.flex { display: flex; gap: 1rem; }
.between { justify-content: space-between; }
.center { align-items: center; }
.tiny { font-size: .875rem; }
.muted { color: var(--muted); }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; }
.grid-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1.25rem; }
.card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 1.25rem; transition: transform .2s ease, box-shadow .2s ease; }
.card:hover { transform: translateY(-4px); box-shadow: 0 12px 24px rgba(0,0,0,.12);}
.skip-link { position: absolute; left: -999px; top: auto; width: 1px; height: 1px; overflow: hidden; }
.skip-link:focus { position: static; width: auto; height: auto; padding: .5rem 1rem; background: var(--accent); color: #000;}
.site-header { position: sticky; top: 0; z-index: 50; backdrop-filter: blur(6px); background: rgba(255,255,255,.75); border-bottom: 1px solid rgba(0,0,0,.06); padding-top: 5px;}
.brand { display: inline-flex; gap: .75rem; align-items: center; text-decoration: none; color: var(--text); }
.logo { width: 79px; height: 36px; }
.brand-text { font-weight: 720; letter-spacing: .3px; }
.nav-toggle { display: none; }
.menu { display: flex; gap: 1rem; list-style: none; margin: 0; padding: 0; }
.menu a { text-decoration: none; color: var(--text); padding: .75rem 1rem; border-radius: 999px; }
.menu a.active, .menu a:hover { background: var(--primary); color: white; }
.hero { position: relative; overflow: hidden; color: #fff; background: linear-gradient(120deg, rgba(11,58,110,.92), rgba(11,58,110,.65)), url('../img/hero-collage.svg') center/cover no-repeat; }
.hero .wrap { padding: clamp(4rem, 10vw, 9rem) 0; }
.hero h1 { font-size: clamp(2rem, 5vw, 3.2rem); margin: 0 0 .5rem; }
.hero p { max-width: 60ch; opacity: .95; }
.hero .cta { margin-top: 1.5rem; display: inline-block; background: var(--accent); color: #000; padding: .9rem 1.25rem; border-radius: 12px; text-decoration:none; font-weight:600; }
.hero .badge-row { display:flex; gap: .5rem; margin-top: 1rem; flex-wrap: wrap; }
.badge { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.3); padding: .35rem .6rem; border-radius: 999px; font-size: .85rem; }
.section { padding: clamp(2.5rem, 3vw, 4.5rem) 0; }
.section h2 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); margin: 0 0 .75rem; }
.section p.lead { font-size: 1.1rem; color: #253046; max-width: 70ch; }
.kicker { text-transform: uppercase; letter-spacing: .16em; font-weight: 700; color: var(--accent); font-size: .85rem; }
.icon { width: 40px; height: 40px; display:inline-flex; align-items:center; justify-content:center; border-radius: 10px; background: #f2f5fb; }
.profile { display:flex; gap: 1rem; align-items:center; }
.profile img { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; }
.list { padding-left: 1rem; }
.list li { margin-bottom: .5rem; }
.callout { background: linear-gradient(180deg, #fff, #f3f6fb); border: 1px solid #e7ecf6; border-radius: var(--radius); padding: 1.25rem; }
.contact-form { display:grid; gap: .75rem; max-width: 640px; }
.contact-form label { font-weight: 600; }
.contact-form input, .contact-form textarea { padding: .8rem 1rem; border-radius: 10px; border: 1px solid #d6dcea; width: 100%; }
.contact-form button { background: var(--primary); color: #fff; border: none; padding: .9rem 1.1rem; border-radius: 12px; cursor: pointer; font-weight: 600; }
.site-footer { background: #0a2746; color: #dbe6ff; padding: 2.5rem 0 1rem; }
.site-footer a { color: #fff; }
.site-footer h4 { margin-top: 0; }
.icon-link { display:inline-flex; width:36px; height:36px; align-items:center; justify-content:center; border:1px solid rgba(255,255,255,.3); border-radius: 10px; text-decoration:none; }
.reveal { opacity: 0; transform: translateY(12px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (max-width: 960px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .menu { display:none; position:absolute; right: 1rem; top: 64px; background: white; padding: .75rem; border-radius: 12px; box-shadow: var(--shadow); }
  .nav-toggle { display: inline-flex; background: var(--primary); color: #fff; border: none; border-radius: 10px; padding: .6rem .9rem; }
  .menu.open { display:flex; flex-direction: column; }
}