:root {
  --navy: #0f2638;
  --blue: #164767;
  --steel: #e8eef2;
  --gold: #f5b942;
  --orange: #d97622;
  --white: #ffffff;
  --ink: #1e2933;
  --muted: #5e6b76;
  --max: 1120px;
}
* { box-sizing: border-box; }
body { margin: 0; font-family: Arial, Helvetica, sans-serif; color: var(--ink); background: #f7f9fb; line-height: 1.6; }
a { color: inherit; }
.site-header { display: flex; justify-content: space-between; align-items: center; gap: 24px; padding: 18px 5%; background: var(--navy); color: var(--white); position: sticky; top: 0; z-index: 10; }
.brand { display: flex; align-items: center; gap: 12px; font-weight: 800; text-decoration: none; letter-spacing: .3px; }
.brand-mark { display: inline-grid; place-items: center; width: 44px; height: 44px; border: 2px solid var(--gold); color: var(--gold); border-radius: 10px; font-weight: 900; }
nav { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; font-size: .95rem; }
nav a { text-decoration: none; opacity: .9; }
nav a:hover { opacity: 1; color: var(--gold); }
.nav-cta { border: 1px solid var(--gold); padding: 8px 12px; border-radius: 999px; color: var(--gold); }
.hero { max-width: var(--max); margin: 0 auto; padding: 80px 5%; display: grid; grid-template-columns: 1.4fr .8fr; gap: 36px; align-items: center; }
.hero h1, .page-hero h1 { font-size: clamp(2.3rem, 5vw, 4.6rem); line-height: 1.02; margin: 0 0 22px; color: var(--navy); }
.lead { font-size: 1.22rem; color: var(--muted); max-width: 760px; }
.eyebrow { margin: 0 0 12px; text-transform: uppercase; letter-spacing: .14em; font-weight: 800; color: var(--orange); font-size: .78rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.button { display: inline-block; border: 0; border-radius: 999px; padding: 13px 20px; font-weight: 800; text-decoration: none; cursor: pointer; }
.button.primary { background: var(--orange); color: white; }
.button.secondary { background: var(--steel); color: var(--navy); }
.button.light { background: var(--gold); color: var(--navy); }
.hero-card, .card, .contact-card, .blog-preview article { background: var(--white); border: 1px solid #dce4ea; border-radius: 22px; padding: 28px; box-shadow: 0 18px 40px rgba(15,38,56,.08); }
.hero-card h2 { margin-top: 0; color: var(--navy); }
.hero-card li { margin: 10px 0; }
.section { max-width: var(--max); margin: 0 auto; padding: 56px 5%; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; align-items: start; }
.section h2 { color: var(--navy); font-size: clamp(1.6rem, 3vw, 2.4rem); line-height: 1.15; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card h3 { color: var(--navy); margin-top: 0; }
.highlight { background: var(--white); border-top: 5px solid var(--gold); border-radius: 22px; margin-top: 30px; }
.text-link { color: var(--blue); font-weight: 800; text-decoration: none; }
.cta-band { background: var(--navy); color: var(--white); text-align: center; padding: 58px 5%; }
.cta-band h2 { margin-top: 0; font-size: clamp(1.8rem, 4vw, 3rem); }
.page-hero { max-width: var(--max); margin: 0 auto; padding: 72px 5% 36px; }
.narrow { max-width: 860px; }
.service-list { display: grid; gap: 22px; }
.service-list article { background: var(--white); border-left: 7px solid var(--gold); border-radius: 16px; padding: 24px; }
.contact-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 28px; }
.contact-form { background: white; border: 1px solid #dce4ea; border-radius: 22px; padding: 28px; display: grid; gap: 16px; }
label { display: grid; gap: 6px; font-weight: 800; color: var(--navy); }
input, textarea { width: 100%; border: 1px solid #c9d5dc; border-radius: 12px; padding: 12px; font: inherit; }
.date { color: var(--orange); font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.site-footer { display: flex; justify-content: space-between; gap: 16px; padding: 28px 5%; background: #071822; color: #d6e1e8; font-size: .95rem; }
.site-footer a { color: var(--gold); }
@media (max-width: 820px) {
  .site-header, .site-footer { display: block; }
  nav { margin-top: 16px; }
  .hero, .split, .cards, .contact-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 48px; }
}
