:root {
  --ink: #0d1420;
  --muted: #5b6675;
  --paper: #f6f7f9;
  --card: #ffffff;
  --line: #dce1e8;
  --accent: #b4882d;
  --accent-dark: #7a5a13;
  --navy: #142235;
  --success: #1f6c4d;
  --max: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
a { color: inherit; }
img { max-width: 100%; }
.container { width: min(calc(100% - 36px), var(--max)); margin: 0 auto; }
.skip-link { position: absolute; left: -9999px; top: 8px; }
.skip-link:focus { left: 12px; z-index: 9999; background: #fff; padding: 8px 12px; border-radius: 6px; }

.topbar { background: #0b111b; color: #e9edf3; font-size: 0.88rem; }
.topbar .container { display: flex; justify-content: space-between; gap: 16px; padding: 8px 0; flex-wrap: wrap; }
.site-header { background: rgba(255,255,255,0.96); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 100; backdrop-filter: blur(10px); }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 76px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-mark { width: 42px; height: 42px; border: 2px solid var(--accent); border-radius: 10px; display: grid; place-items: center; font-weight: 900; color: var(--accent-dark); background: #fffaf0; letter-spacing: 0.04em; }
.brand-text strong { display: block; font-size: 1rem; letter-spacing: 0.02em; }
.brand-text span { display: block; color: var(--muted); font-size: 0.76rem; }
.desktop-nav { display: flex; gap: 20px; align-items: center; }
.desktop-nav a, .mobile-nav a { text-decoration: none; color: #293445; font-weight: 700; font-size: 0.92rem; }
.desktop-nav a:hover, .desktop-nav a[aria-current="page"], .mobile-nav a:hover, .mobile-nav a[aria-current="page"] { color: var(--accent-dark); }
.mobile-nav { display: none; position: relative; }
.mobile-nav summary { cursor: pointer; list-style: none; border: 1px solid var(--line); background: #fff; padding: 9px 12px; border-radius: 8px; font-weight: 800; }
.mobile-nav summary::-webkit-details-marker { display: none; }
.mobile-nav[open] nav { position: absolute; top: calc(100% + 10px); right: 0; width: min(300px, calc(100vw - 36px)); background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 16px; box-shadow: 0 18px 50px rgba(13,20,32,.18); display: flex; flex-direction: column; align-items: stretch; gap: 12px; }
.mobile-nav[open] nav a:not(.btn) { padding: 7px 4px; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; text-decoration: none; border-radius: 10px; padding: 12px 18px; font-weight: 800; border: 1px solid transparent; transition: transform .15s ease, box-shadow .15s ease; }
.btn:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(13,20,32,.12); }
.btn-primary { background: var(--navy); color: #fff; }
.btn-secondary { background: #fff; border-color: var(--line); color: var(--ink); }
.btn-accent { background: var(--accent); color: #111; }

.hero { padding: 88px 0 76px; background: linear-gradient(135deg, #0f1b2b 0%, #172a41 62%, #223c5a 100%); color: #fff; position: relative; overflow: hidden; }
.hero::after { content: ""; position: absolute; width: 440px; height: 440px; border-radius: 50%; right: -140px; top: -120px; background: radial-gradient(circle, rgba(180,136,45,.35), rgba(180,136,45,0)); }
.hero-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 48px; align-items: center; position: relative; z-index: 1; }
.eyebrow { color: #f3c969; letter-spacing: .14em; text-transform: uppercase; font-size: .8rem; font-weight: 900; margin: 0 0 14px; }
h1 { font-size: clamp(2.5rem, 6vw, 4.8rem); line-height: 1.02; margin: 0 0 20px; letter-spacing: -.04em; }
.hero p { color: #d6deea; font-size: 1.16rem; max-width: 760px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.hero-card { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18); border-radius: 18px; padding: 28px; box-shadow: 0 30px 70px rgba(0,0,0,.22); }
.hero-card h2 { font-size: 1.25rem; margin-top: 0; }
.hero-card ul { margin: 16px 0 0; padding-left: 20px; color: #e9eef5; }

.section { padding: 76px 0; }
.section.white { background: #fff; }
.section.dark { background: var(--navy); color: #fff; }
.section.dark p { color: #d2dae5; }
.section-head { max-width: 760px; margin-bottom: 34px; }
.section-head h2 { font-size: clamp(2rem, 4vw, 3.1rem); line-height: 1.1; margin: 0 0 14px; letter-spacing: -.03em; }
.section-head p { color: var(--muted); font-size: 1.04rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.card { background: var(--card); border: 1px solid var(--line); border-radius: 16px; padding: 26px; box-shadow: 0 12px 30px rgba(13,20,32,.05); }
.card h3 { margin: 0 0 10px; font-size: 1.18rem; }
.card p { margin: 0; color: var(--muted); }
.card .kicker { color: var(--accent-dark); font-weight: 900; font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 10px; display: block; }
.icon-box { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: #fff7e6; color: var(--accent-dark); font-weight: 900; margin-bottom: 16px; }

.stat-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.stat { background: #fff; padding: 24px; }
.stat strong { display: block; font-size: 1.3rem; }
.stat span { color: var(--muted); font-size: .9rem; }

.page-hero { padding: 58px 0; background: #eef1f5; border-bottom: 1px solid var(--line); }
.page-hero h1 { color: var(--ink); font-size: clamp(2.3rem, 5vw, 4rem); }
.page-hero p { color: var(--muted); max-width: 760px; font-size: 1.08rem; }
.prose { max-width: 860px; }
.prose h2 { margin-top: 2.2rem; font-size: 1.6rem; }
.prose h3 { margin-top: 1.6rem; }
.prose p, .prose li { color: #3f4a59; }
.notice { border-left: 4px solid var(--accent); background: #fff9ea; padding: 18px 20px; border-radius: 8px; margin: 22px 0; }
.contact-panel { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 28px; }
.contact-list { list-style: none; padding: 0; margin: 0; }
.contact-list li { margin: 12px 0; }
.contact-list a { color: var(--accent-dark); font-weight: 800; }

.cta { padding: 64px 0; background: linear-gradient(125deg, #172a41, #0d1420); color: #fff; }
.cta-inner { display: flex; justify-content: space-between; gap: 30px; align-items: center; }
.cta h2 { margin: 0 0 8px; font-size: 2rem; }
.cta p { margin: 0; color: #d6deea; }

.site-footer { background: #0b111b; color: #d5dbe4; padding: 50px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 28px; }
.site-footer h3 { color: #fff; margin-top: 0; }
.site-footer a { color: #d5dbe4; text-decoration: none; }
.site-footer a:hover { color: #fff; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin: 8px 0; }
.footer-bottom { border-top: 1px solid #263142; margin-top: 30px; padding-top: 22px; font-size: .86rem; color: #aeb7c4; }

.badge { display: inline-block; border: 1px solid rgba(255,255,255,.25); border-radius: 999px; padding: 7px 11px; font-size: .78rem; margin: 4px 6px 4px 0; color: #e8edf4; }

@media (max-width: 900px) {
  .hero-grid, .grid-3, .grid-2, .footer-grid { grid-template-columns: 1fr; }
  .stat-band { grid-template-columns: 1fr 1fr; }
  .desktop-nav { display: none; }
  .mobile-nav { display: block; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px) {
  .topbar .container { display: block; }
  .stat-band { grid-template-columns: 1fr; }
  .brand-text span { display: none; }
  .hero { padding-top: 64px; }
}


/* Production accessibility and no-inline-style utilities */
.eyebrow-dark { color: var(--accent-dark); }
.mt-14 { margin-top: 14px !important; }
.section-head-spaced { margin-top: 50px; }
.footer-heading { color: #fff; margin-top: 0; font-size: 1.08rem; }

:focus-visible { outline: 3px solid #d39b2a; outline-offset: 3px; }
button, summary, a { -webkit-tap-highlight-color: transparent; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

@media print {
  .topbar, .site-header, .cta, .site-footer, .btn { display: none !important; }
  body { background: #fff; color: #000; }
  .section, .page-hero, .hero { padding: 20px 0; background: #fff !important; color: #000 !important; }
  a { text-decoration: underline; }
}
