
:root {
  --navy: #0e3a5e;
  --navy-dark: #081726;
  --navy-light: #144b78;
  --gold: #f5b90a;
  --sage: #9cbc8a;
  --ink: #1e2a33;
  --muted: #5b6670;
  --bg: #f7f9fb;
  --surface: #ffffff;
  --border: #e3ebf2;
}
* { box-sizing: border-box; }
body {
  margin: 0; font-family: -apple-system, 'Inter', system-ui, sans-serif;
  color: var(--ink); background: var(--bg); line-height: 1.6;
}
.container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
a { color: var(--navy-light); }
h1, h2, h3 { color: var(--navy); line-height: 1.25; }
h1 { font-size: 40px; margin: 0 0 8px; }
h2 { font-size: 26px; margin: 0 0 20px; }
h3 { font-size: 18px; margin: 0 0 8px; }

.site-header { background: var(--surface); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 10; }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 24px; }
.brand-logo { height: 40px; display: block; }
.site-nav { display: flex; gap: 24px; }
.site-nav a { color: var(--muted); text-decoration: none; font-weight: 500; font-size: 14px; padding: 6px 0; border-bottom: 2px solid transparent; }
.site-nav a:hover, .site-nav a.active { color: var(--navy); border-bottom-color: var(--gold); }

.hero { background: linear-gradient(160deg, var(--navy) 0%, var(--navy-dark) 100%); color: #fff; padding: 90px 0 70px; text-align: center; }
.hero h1 { color: #fff; font-size: 48px; margin-bottom: 12px; }
.hero-sub { font-size: 22px; color: var(--gold); font-style: italic; margin: 0 0 6px; }
.hero-location { color: rgba(255,255,255,.7); margin: 0 0 32px; font-size: 14px; }
.hero-actions { display: flex; gap: 16px; justify-content: center; }

.btn { display: inline-block; padding: 12px 28px; border-radius: 999px; text-decoration: none; font-weight: 600; font-size: 15px; }
.btn-primary { background: var(--gold); color: var(--navy-dark); }
.btn-primary:hover { filter: brightness(1.06); }
.btn-outline { border: 1.5px solid rgba(255,255,255,.5); color: #fff; }
.btn-outline:hover { border-color: #fff; }

.section { padding: 64px 0; }
.section-alt { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section h2 { text-align: center; }
.page-header { padding: 56px 0 8px; }
.page-header h1 { margin-bottom: 0; }

.promise-grid, .service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 32px; }
.service-grid { grid-template-columns: repeat(2, 1fr); }
.promise-card, .service-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 24px;
}
.service-status {
  display: inline-block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em;
  color: var(--navy); background: rgba(156,188,138,.25); padding: 3px 10px; border-radius: 999px; margin-bottom: 10px;
}
.section-cta { text-align: center; margin-top: 32px; }
.section-cta a { font-weight: 600; text-decoration: none; }

.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { margin-top: 40px; }
.prose p { margin: 0 0 16px; }
.contact-list { list-style: none; padding: 0; }
.contact-list li { padding: 6px 0; border-bottom: 1px solid var(--border); }

.policy-modules { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px 48px; }
.policy-module h3 { color: var(--navy); border-bottom: 2px solid var(--gold); padding-bottom: 8px; }
.policy-list { list-style: none; padding: 0; margin: 0; }
.policy-list li { padding: 6px 0; }
.policy-list a { text-decoration: none; color: var(--ink); font-size: 14px; }
.policy-list a:hover { color: var(--navy-light); text-decoration: underline; }

.breadcrumb a { text-decoration: none; font-size: 13px; color: var(--muted); }
.policy-doc h1 { font-size: 26px; }
.policy-doc h2 { font-size: 18px; text-align: left; margin-top: 28px; }
.policy-doc ul, .policy-doc ol { padding-left: 22px; }
.policy-doc table { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: 14px; }
.policy-doc th, .policy-doc td { border: 1px solid var(--border); padding: 8px 10px; text-align: left; }
.policy-doc th { background: var(--bg); }

.site-footer { background: var(--navy-dark); color: rgba(255,255,255,.85); padding: 40px 0 20px; margin-top: 40px; }
.footer-inner { display: flex; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.footer-logo { height: 34px; filter: brightness(0) invert(1); opacity: .9; margin-bottom: 10px; }
.footer-tagline { font-style: italic; color: var(--gold); margin: 0; }
.footer-contact p { margin: 2px 0; font-size: 14px; }
.footer-contact a { color: #fff; }
.footer-legal { font-size: 12px; color: rgba(255,255,255,.5); margin-top: 28px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.12); }

@media (max-width: 720px) {
  .promise-grid, .service-grid, .policy-modules { grid-template-columns: 1fr; }
  .header-inner { flex-direction: column; gap: 10px; }
  .site-nav { flex-wrap: wrap; justify-content: center; }
  .hero h1 { font-size: 34px; }
}
