:root {
  --ink: #243244;
  --muted: #617181;
  --blue: #006CB7;
  --blue-dark: #004d87;
  --aqua: #44b7c9;
  --green: #77b255;
  --yellow: #f3c63a;
  --soft: #f3f8fa;
  --paper: #ffffff;
  --line: #d8e5e8;
  --dark: #153148;
  --shadow: 0 18px 46px rgba(22, 55, 74, 0.13);
  font-family: Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); line-height: 1.6; }
img { display: block; max-width: 100%; }
a { color: inherit; }
.skip-link { position: absolute; left: 1rem; top: -4rem; z-index: 40; background: var(--yellow); padding: .75rem 1rem; font-weight: 800; }
.skip-link:focus { top: 1rem; }
.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.topbar { background: var(--blue); color: var(--paper); }
.topbar__inner { min-height: 42px; display: flex; align-items: center; justify-content: flex-end; gap: 1.2rem; font-size: .94rem; font-weight: 800; }
.topbar a, .site-footer a { text-decoration: none; }
.site-header { position: sticky; top: 0; z-index: 30; background: rgba(255,255,255,.97); border-bottom: 1px solid var(--line); backdrop-filter: blur(10px); }
.mockup-notice { background: var(--yellow); padding: 1rem 0; border-bottom: 2px solid var(--yellow); }
.mockup-notice p { margin: 0; font-size: .95rem; color: var(--ink); }
.nav-wrap { min-height: 92px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand img { width: 245px; }
.site-nav { display: flex; align-items: center; gap: .1rem; }
.nav-item { position: relative; }
.nav-item > a { min-height: 44px; display: flex; align-items: center; border-radius: 6px; padding: 0 .55rem; color: var(--ink); font-size: .9rem; font-weight: 800; text-decoration: none; text-transform: lowercase; }
.nav-item.is-active > a, .nav-item > a:hover { background: var(--soft); color: var(--blue-dark); }
.submenu { position: absolute; top: 100%; left: 0; min-width: 260px; display: none; background: var(--paper); border: 1px solid var(--line); border-radius: 8px; box-shadow: var(--shadow); padding: .45rem; }
.nav-item:hover .submenu, .nav-item:focus-within .submenu { display: grid; }
.submenu a { padding: .55rem .7rem; border-radius: 6px; color: var(--muted); font-size: .88rem; font-weight: 700; text-decoration: none; text-transform: lowercase; }
.submenu a:hover { background: var(--soft); color: var(--blue-dark); }
.menu-toggle { width: 44px; height: 44px; display: none; place-items: center; gap: 4px; border: 1px solid var(--line); border-radius: 6px; background: var(--paper); }
.menu-toggle span { width: 20px; height: 2px; background: var(--ink); }
.page-hero { padding: 78px 0; background: linear-gradient(90deg, rgba(255,255,255,.95), rgba(255,255,255,.82)), radial-gradient(circle at 85% 20%, rgba(68,183,201,.26), transparent 34%), var(--soft); }
.page-hero__grid, .split, .contact-grid, .band-grid, .footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.page-hero img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 8px; box-shadow: var(--shadow); background: var(--paper); }
.eyebrow { margin: 0 0 .75rem; color: var(--blue-dark); font-size: .78rem; font-weight: 900; letter-spacing: 0; text-transform: uppercase; }
h1, h2, h3 { margin: 0; line-height: 1.08; letter-spacing: 0; }
h1 { max-width: 760px; font-size: clamp(2.65rem, 7vw, 5.6rem); text-transform: lowercase; }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); text-transform: lowercase; }
h3 { font-size: 1.25rem; text-transform: lowercase; }
.lead { max-width: 660px; margin: 1.15rem 0 0; color: var(--muted); font-size: 1.2rem; }
.actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }
.button { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; border: 2px solid transparent; border-radius: 6px; padding: .7rem 1.1rem; font-weight: 900; text-decoration: none; cursor: pointer; }
.button-primary { background: var(--blue); color: var(--paper); }
.button-secondary { border-color: var(--blue); color: var(--blue-dark); }
.button-light { background: var(--paper); color: var(--blue-dark); }
.section { padding: 82px 0; }
.soft { background: var(--soft); }
.dark { background: var(--dark); color: var(--paper); }
.section-head { max-width: 760px; margin-bottom: 34px; }
.section-head p, .split p, .card p, .feature p { color: var(--muted); }
.dark p, .dark .feature p { color: rgba(255,255,255,.78); }
.grid { display: grid; gap: 18px; }
.grid.one { grid-template-columns: 1fr; }
.grid.two { grid-template-columns: repeat(2, 1fr); }
.grid.three { grid-template-columns: repeat(3, 1fr); }
.grid.four { grid-template-columns: repeat(4, 1fr); }
.card, .feature, .contact-panel, .person-card { border: 1px solid var(--line); border-radius: 8px; background: var(--paper); box-shadow: 0 8px 26px rgba(22,55,74,.07); overflow: hidden; }
.card > div, .card:not(.service-card), .feature, .contact-panel, .person-card { padding: 1.15rem; }
.service-card img, .feature img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.service-card h3, .card h3 { color: var(--blue-dark); }
.green { color: var(--green) !important; font-weight: 900; }
.card a, .feature a { color: var(--blue-dark); font-weight: 900; text-decoration: none; }
.band { padding: 52px 0; background: var(--blue); color: var(--paper); }
.band h2 { color: var(--paper); }
.band .eyebrow, .dark .eyebrow { color: var(--yellow); }
.band-grid { grid-template-columns: 1fr auto; }
.pill-list { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.4rem; }
.pill-list a { border: 1px solid var(--line); border-radius: 999px; background: var(--paper); padding: .6rem .9rem; color: var(--blue-dark); font-weight: 900; text-decoration: none; }
.map { width: 100%; border-radius: 8px; background: var(--paper); padding: 1rem; box-shadow: var(--shadow); }
.check-list { margin: 1rem 0 0; padding: 0; list-style: none; display: grid; gap: .8rem; }
.check-list li { padding: .85rem 1rem; border-left: 6px solid var(--yellow); background: var(--soft); border-radius: 6px; font-weight: 800; }
.contact-panel { align-self: start; }
.mock-form { display: grid; gap: .9rem; }
.mock-form label { display: grid; gap: .35rem; color: var(--muted); font-weight: 800; }
.mock-form input, .mock-form textarea, .mock-form select { width: 100%; min-height: 44px; border: 1px solid var(--line); border-radius: 6px; padding: .65rem; font: inherit; }
.mock-form textarea { min-height: 130px; resize: vertical; }
.person-card div { width: 86px; height: 86px; margin-bottom: 1rem; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--green)); }
.timeline { display: grid; gap: 1rem; }
.timeline div { display: grid; grid-template-columns: 28px 1fr; gap: 1rem; align-items: start; }
.timeline span { width: 18px; height: 18px; margin-top: .2rem; border-radius: 50%; background: var(--yellow); box-shadow: 0 0 0 8px var(--soft); }
.site-footer { background: #006CB7; color: var(--paper); padding: 36px 0; }
.footer-grid { grid-template-columns: 1fr auto auto; align-items: end; }
.footer-logo { width: 220px; margin-bottom: 1rem; filter: brightness(1.35); }
.footer-links { display: grid; gap: .35rem; text-transform: lowercase; font-weight: 800; }
@media (max-width: 1080px) {
  .grid.four { grid-template-columns: repeat(2, 1fr); }
  .site-nav { gap: 0; }
  .nav-item > a { padding: 0 .42rem; font-size: .84rem; }
}
@media (max-width: 860px) {
  .menu-toggle { display: grid; }
  .site-nav { position: absolute; top: 100%; left: 0; right: 0; display: none; flex-direction: column; align-items: stretch; background: var(--paper); border-bottom: 1px solid var(--line); padding: .5rem 20px 1rem; }
  .site-nav.is-open { display: flex; }
  .nav-item > a { width: 100%; }
  .submenu { position: static; display: grid; min-width: 0; box-shadow: none; border: 0; padding-left: 1rem; }
  .page-hero__grid, .split, .contact-grid, .band-grid, .footer-grid { grid-template-columns: 1fr; }
  .grid.three, .grid.two { grid-template-columns: 1fr; }
  .band-grid { gap: 24px; }
}
@media (max-width: 620px) {
  .container { width: min(100% - 28px, 1160px); }
  .topbar__inner { justify-content: center; flex-wrap: wrap; gap: .35rem 1rem; padding: .45rem 0; }
  .brand img { width: 190px; }
  .nav-wrap { min-height: 74px; }
  .page-hero, .section { padding: 54px 0; }
  .grid.four { grid-template-columns: 1fr; }
}
