:root {
  --blue: #075aa8;
  --blue-dark: #053b70;
  --blue-soft: #eaf4fc;
  --green: #78b82a;
  --green-dark: #4f8614;
  --ink: #142333;
  --muted: #5d6d7c;
  --line: #d7e1e8;
  --line-strong: #b7c8d4;
  --paper: #f5f8fa;
  --white: #fff;
  --danger: #b62f2f;
  --sans: Arial, Helvetica, sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --shell: 1360px;
  --gutter: clamp(16px, 3vw, 40px);
  --section: clamp(34px, 4.2vw, 62px);
  color-scheme: light;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--paper); color: var(--ink); }
body { margin: 0; min-width: 320px; overflow-x: hidden; background: var(--paper); font: 15px/1.55 var(--sans); text-rendering: optimizeLegibility; }
body.drawer-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a, input, select, textarea, summary { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
:focus-visible { outline: 3px solid #8cccf1; outline-offset: 3px; }
[hidden] { display: none !important; }
.shell { width: min(100%, var(--shell)); margin-inline: auto; padding-inline: var(--gutter); }
.skip-link { position: fixed; z-index: 300; top: 8px; left: 8px; padding: 10px 14px; background: var(--green); color: #fff; transform: translateY(-140%); }
.skip-link:focus { transform: translateY(0); }

.site-header { position: relative; z-index: 100; background: var(--white); border-bottom: 1px solid var(--line); }
.utility-bar { min-height: 28px; background: var(--blue-dark); color: #dcecf7; font: 10px/1.2 var(--mono); }
.utility-inner { min-height: 28px; display: flex; align-items: center; justify-content: flex-end; gap: clamp(12px, 2vw, 26px); }
.utility-inner a { transition: color .16s ease; }
.utility-inner a:hover { color: #fff; }
.header-address { margin-right: auto; }
.header-phone { color: #fff; font-weight: 800; letter-spacing: .02em; }
.header-hours { color: #cbe998; }
.header-row { min-height: 62px; display: grid; grid-template-columns: 112px minmax(0, 1fr) 44px; align-items: center; gap: 16px; }
.brand { width: 108px; }
.brand img { width: 100%; }
.desktop-nav { min-width: 0; display: flex; align-items: stretch; justify-content: center; }
.nav-group { position: relative; display: flex; align-items: center; min-width: 0; }
.nav-main { min-height: 61px; padding: 8px 4px 7px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px; color: var(--ink); font-size: clamp(9px, .72vw, 10.5px); font-weight: 700; white-space: nowrap; transition: color .16s ease; }
.nav-main::after { content: ""; position: absolute; right: 4px; bottom: -1px; left: 4px; height: 2px; background: var(--green); transform: scaleX(0); transition: transform .16s ease; }
.nav-main:hover, .nav-group:focus-within .nav-main { color: var(--blue); }
.nav-main:hover::after, .nav-group:focus-within .nav-main::after { transform: scaleX(1); }
.nav-icon { width: 17px; height: 17px; flex: 0 0 17px; object-fit: contain; }
.mega-toggle { width: 15px; height: 34px; margin-right: 2px; padding: 0; border: 0; background: transparent; color: #7c8b96; cursor: pointer; font-size: 12px; }
.mega-toggle[aria-expanded="true"] { color: var(--blue); }
.mega-menu { position: absolute; z-index: 30; top: calc(100% - 1px); left: 0; width: 250px; padding: 6px; display: grid; visibility: hidden; opacity: 0; transform: translateY(5px); background: var(--white); border: 1px solid var(--line); box-shadow: 0 16px 34px rgb(28 61 88 / .14); transition: opacity .15s ease, transform .15s ease, visibility .15s; }
.nav-group:nth-last-child(-n+2) .mega-menu { right: 0; left: auto; }
.mega-menu.is-open, .nav-group:hover .mega-menu, .nav-group:focus-within .mega-menu { visibility: visible; opacity: 1; transform: translateY(0); }
.mega-menu a { min-height: 36px; padding: 8px 10px; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 10px; border-bottom: 1px solid var(--line); font-size: 12px; }
.mega-menu a:last-child { border-bottom: 0; }
.mega-menu a span { color: var(--green-dark); }
.mega-menu a:hover { background: var(--blue-soft); color: var(--blue-dark); }
.search-link { min-height: 44px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px; color: var(--blue); font-size: 9px; font-weight: 700; }
.search-link span { display: none; }
.menu-toggle { width: 42px; height: 42px; padding: 0; display: none; align-items: center; justify-content: center; flex-direction: column; gap: 5px; border: 1px solid var(--line-strong); background: var(--white); }
.menu-toggle span { width: 18px; height: 1px; background: var(--blue-dark); }
.drawer-backdrop { position: fixed; z-index: 110; inset: 0; background: rgb(5 35 60 / .55); }
.mobile-drawer { position: fixed; z-index: 120; inset: 0 0 0 auto; width: min(400px, 94vw); padding: 14px; display: flex; flex-direction: column; overflow-y: auto; visibility: hidden; transform: translateX(102%); background: var(--white); box-shadow: -20px 0 50px rgb(8 38 60 / .2); transition: transform .22s ease, visibility .22s; }
.mobile-drawer.is-open { visibility: visible; transform: translateX(0); }
.drawer-head { min-height: 44px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); }
.drawer-head strong { color: var(--blue-dark); font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }
.drawer-close { width: 40px; height: 40px; border: 0; background: transparent; color: var(--blue-dark); font-size: 28px; line-height: 1; }
.mobile-drawer nav { display: grid; }
.mobile-nav-group { border-bottom: 1px solid var(--line); }
.mobile-nav-group summary { min-height: 46px; display: grid; grid-template-columns: 22px 1fr auto; align-items: center; gap: 9px; cursor: pointer; list-style: none; color: var(--ink); font-weight: 700; }
.mobile-nav-group summary::-webkit-details-marker { display: none; }
.mobile-nav-group summary::after { content: "+"; color: var(--blue); font-size: 18px; font-weight: 400; }
.mobile-nav-group[open] summary::after { content: "−"; }
.mobile-nav-group summary .nav-icon { width: 18px; height: 18px; }
.mobile-nav-group > div { padding: 0 0 9px 31px; display: grid; }
.mobile-nav-group > div a { min-height: 34px; padding: 7px 0; color: var(--muted); font-size: 13px; }
.mobile-nav-group > div a:hover { color: var(--blue); }
.mobile-overview { color: var(--blue) !important; font-weight: 700; }
.drawer-contacts { margin-top: auto; padding: 18px 4px 4px; display: grid; gap: 5px; border-top: 1px solid var(--line); color: var(--muted); font-size: 12px; }
.drawer-contacts a:first-child { color: var(--blue-dark); font-size: 19px; font-weight: 800; }

main { overflow: clip; }
.breadcrumbs { min-height: 36px; display: flex; align-items: center; }
.breadcrumbs ol { list-style: none; margin: 0; padding: 7px 0; display: flex; align-items: center; gap: 6px; overflow: hidden; color: var(--muted); font-size: 11px; white-space: nowrap; }
.breadcrumbs li { min-width: 0; display: flex; gap: 6px; }
.breadcrumbs li:not(:last-child)::after { content: "/"; color: var(--line-strong); }
.breadcrumbs li:last-child { overflow: hidden; text-overflow: ellipsis; }
.breadcrumbs a:hover { color: var(--blue); }
.eyebrow, .content-label, .footer-kicker { display: block; color: var(--blue); font: 700 10px/1.35 var(--mono); letter-spacing: .08em; text-transform: uppercase; }
h1, h2, h3, h4, p { margin-top: 0; }
h1 { margin-bottom: 16px; font-size: clamp(34px, 3.1vw, 44px); line-height: 1.04; letter-spacing: -.03em; text-wrap: balance; }
h2 { margin-bottom: 14px; font-size: clamp(26px, 2.45vw, 36px); line-height: 1.08; letter-spacing: -.025em; text-wrap: balance; }
h3 { margin-bottom: 10px; font-size: clamp(18px, 1.55vw, 23px); line-height: 1.16; letter-spacing: -.015em; }
.button { min-height: 40px; padding: 9px 14px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid transparent; border-radius: 2px; font-size: 11px; font-weight: 800; line-height: 1.2; cursor: pointer; transition: color .16s ease, background .16s ease, border-color .16s ease, transform .16s ease; }
.button:hover { transform: translateY(-1px); }
.button-primary { background: var(--blue); border-color: var(--blue); color: #fff; }
.button-primary:hover { background: var(--blue-dark); border-color: var(--blue-dark); }
.button-secondary { background: transparent; border-color: var(--line-strong); color: var(--blue-dark); }
.button-secondary:hover { background: var(--blue-soft); border-color: #9fc4de; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 8px; }

.home-hero { padding-top: clamp(30px, 3.4vw, 48px); padding-bottom: clamp(30px, 3.4vw, 48px); display: grid; grid-template-columns: minmax(0, .95fr) minmax(420px, 1.05fr); gap: clamp(24px, 4vw, 58px); align-items: center; background: var(--white); }
.home-hero::before { content: ""; position: absolute; z-index: -1; inset: 90px 0 auto; height: 480px; background: var(--white); }
.home-hero-copy .eyebrow { margin-bottom: 12px; }
.home-hero-copy > p { max-width: 680px; margin-bottom: 20px; color: var(--muted); font-size: clamp(15px, 1.2vw, 17px); }
.home-hero-media { position: relative; min-height: 350px; margin: 0; overflow: hidden; background: #dfe9ef; }
.home-hero-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.home-hero-media figcaption { position: absolute; right: 10px; bottom: 10px; left: 10px; padding: 10px 12px; display: grid; gap: 2px; background: rgb(5 45 78 / .9); color: #fff; font-size: 12px; }
.home-hero-media figcaption span { color: #cbed9c; font: 9px var(--mono); text-transform: uppercase; }
.hero-facts { margin: 24px 0 0; padding-top: 14px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; border-top: 1px solid var(--line); }
.hero-facts div { display: grid; gap: 2px; }
.hero-facts dt { color: var(--blue-dark); font-size: 20px; font-weight: 800; line-height: 1; }
.hero-facts dd { margin: 0; color: var(--muted); font-size: 10px; line-height: 1.3; }
.audience-switch { padding-bottom: var(--section); display: grid; grid-template-columns: 1fr 1fr; gap: 10px; background: var(--white); }
.audience-switch::before { content: ""; position: absolute; z-index: -1; right: 0; left: 0; height: 200px; background: var(--white); }
.audience-switch a { min-height: 106px; padding: 18px; display: grid; grid-template-columns: 28px 1fr auto; gap: 12px; align-items: start; border: 1px solid var(--line); border-top: 3px solid var(--blue); background: var(--white); transition: border-color .16s ease, background .16s ease; }
.audience-switch a:last-child { border-top-color: var(--green); }
.audience-switch a:hover { border-color: var(--blue); background: var(--blue-soft); }
.audience-switch > a > span { color: var(--blue); font: 10px var(--mono); }
.audience-switch strong { display: block; margin-bottom: 6px; color: var(--blue-dark); font-size: 20px; }
.audience-switch small { display: block; max-width: 530px; color: var(--muted); font-size: 12px; }
.audience-switch i { color: var(--green-dark); font-style: normal; }

.catalog-section { padding-top: var(--section); padding-bottom: var(--section); }
.catalog-section + .catalog-section { border-top: 1px solid var(--line); }
.section-heading { margin-bottom: 24px; display: grid; grid-template-columns: 48px minmax(0, 1fr); gap: 18px; }
.section-number { padding-top: 6px; color: var(--green-dark); font: 10px var(--mono); }
.section-heading > div { display: flex; align-items: end; justify-content: space-between; gap: 24px; }
.section-heading h2 { max-width: 690px; margin: 0; color: var(--blue-dark); }
.section-heading p { max-width: 520px; margin: 0; color: var(--muted); font-size: 13px; }
.catalog-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.catalog-card { min-width: 0; min-height: 220px; padding: 18px; display: flex; flex-direction: column; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--white); transition: background .16s ease; }
.catalog-card:hover { background: var(--blue-soft); }
.catalog-card > img { width: 100%; height: 150px; margin-bottom: 14px; object-fit: cover; background: #edf2f5; }
.catalog-card > span { margin-bottom: 8px; color: var(--green-dark); font: 9px var(--mono); text-transform: uppercase; }
.catalog-card h3 { color: var(--blue-dark); }
.catalog-card p { margin-bottom: 14px; display: -webkit-box; overflow: hidden; color: var(--muted); font-size: 12px; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }
.catalog-card strong { margin-top: auto; padding-top: 10px; display: flex; justify-content: space-between; gap: 12px; border-top: 1px solid var(--line); color: var(--blue); font-size: 10px; text-transform: uppercase; }
.catalog-card strong i { color: var(--green-dark); font-style: normal; }
.project-directory { background: var(--blue-dark); color: #fff; }
.project-directory .section-heading h2 { color: #fff; }
.project-directory .section-heading p { color: #b9d3e5; }
.project-directory .section-number { color: #bfe787; }
.project-directory .catalog-grid { border-color: #38658b; }
.project-directory .catalog-card { border-color: #38658b; background: #0a4a7f; }
.project-directory .catalog-card:hover { background: #0b568f; }
.project-directory .catalog-card h3 { color: #fff; }
.project-directory .catalog-card p { color: #c3d7e5; }
.project-directory .catalog-card strong { border-color: #38658b; color: #fff; }
.source-archive { padding-top: 12px; padding-bottom: 28px; }
.source-archive > summary { padding: 13px 0; cursor: pointer; color: var(--blue); font-size: 12px; font-weight: 700; }

.page-hero { padding-top: clamp(34px, 4vw, 54px); padding-bottom: clamp(34px, 4vw, 54px); display: grid; grid-template-columns: minmax(0, 1fr); gap: 34px; background: var(--white); border-bottom: 1px solid var(--line); }
.page-hero.has-media { grid-template-columns: minmax(0, .95fr) minmax(380px, .8fr); align-items: center; }
.page-hero-copy .eyebrow { margin-bottom: 12px; }
.page-hero-copy > p { max-width: 760px; margin-bottom: 20px; color: var(--muted); font-size: clamp(15px, 1.2vw, 17px); }
.page-hero-media { position: relative; height: clamp(270px, 29vw, 400px); margin: 0; overflow: hidden; background: #e2ebf0; }
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-media figcaption { position: absolute; right: 8px; bottom: 8px; padding: 7px 9px; background: rgb(5 59 112 / .9); color: #fff; font: 9px var(--mono); }
.content-notice { margin-top: 18px; padding-top: 14px; padding-bottom: 14px; border-left: 3px solid var(--green); background: #f1f8e9; color: #37561b; font-weight: 700; }

.source-gallery { padding-block: 28px; background: #eaf1f5; border-bottom: 1px solid var(--line); }
.source-gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.source-gallery figure { min-width: 0; margin: 0; padding: 8px; background: var(--white); border: 1px solid var(--line); }
.source-gallery img { width: 100%; height: 190px; object-fit: contain; background: #f6f8f9; }
.source-gallery figcaption { padding-top: 7px; color: var(--muted); font-size: 10px; }

.source-layout { padding-top: var(--section); padding-bottom: var(--section); display: grid; grid-template-columns: minmax(0, 1fr); gap: 38px; }
.source-layout.has-toc { grid-template-columns: 220px minmax(0, 820px); justify-content: center; }
.page-toc { position: sticky; top: 18px; align-self: start; max-height: calc(100vh - 36px); padding: 14px; overflow-y: auto; border: 1px solid var(--line); background: var(--white); }
.page-toc strong { color: var(--blue-dark); font-size: 11px; }
.page-toc ol { margin: 10px 0 0; padding: 0; list-style: none; display: grid; }
.page-toc li { border-top: 1px solid var(--line); }
.page-toc a { padding: 7px 0; display: block; color: var(--muted); font-size: 10px; line-height: 1.35; }
.page-toc a:hover { color: var(--blue); }
.page-toc .toc-level-3 { padding-left: 10px; }
.source-content { width: 100%; max-width: 820px; min-width: 0; margin-inline: auto; color: #263746; overflow-wrap: anywhere; }
.source-content .content-label { margin-bottom: 14px; }
.source-content h2 { margin: 36px 0 15px; padding-top: 3px; color: var(--blue-dark); font-size: clamp(24px, 2.2vw, 32px); scroll-margin-top: 20px; }
.source-content h2:first-of-type { margin-top: 0; }
.source-content h3 { margin: 28px 0 12px; color: var(--blue-dark); font-size: clamp(19px, 1.6vw, 24px); scroll-margin-top: 20px; }
.source-content h4, .source-content h5, .source-content h6 { margin: 22px 0 9px; color: var(--ink); font-size: 17px; }
.source-content p { margin-bottom: 15px; }
.source-content a { color: var(--blue); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.source-content a:hover { color: var(--green-dark); }
.source-content ul, .source-content ol { margin: 0 0 20px; padding-left: 22px; }
.source-content li { margin-bottom: 7px; }
.source-content blockquote { margin: 22px 0; padding: 14px 18px; border-left: 3px solid var(--green); background: #f1f7eb; }
.source-content img { max-height: 620px; margin: 18px auto; object-fit: contain; }
.source-content figure { margin: 22px 0; }
.source-content figcaption { margin-top: 7px; color: var(--muted); font-size: 11px; text-align: center; }
.source-content table { width: 100%; margin: 20px 0; display: block; overflow-x: auto; border-collapse: collapse; }
.source-content th, .source-content td { min-width: 130px; padding: 9px 10px; border: 1px solid var(--line); text-align: left; vertical-align: top; font-size: 12px; }
.source-content th { background: var(--blue-soft); color: var(--blue-dark); }
.source-content hr { margin: 30px 0; border: 0; border-top: 1px solid var(--line); }
.source-content pre { max-width: 100%; padding: 14px; overflow-x: auto; background: #edf2f5; font: 12px/1.5 var(--mono); }
.source-content strong { color: #142f43; }

.archive-list { padding-block: var(--section); background: var(--white); }
.archive-list-inner > a { min-height: 54px; padding: 11px 0; display: grid; grid-template-columns: 42px 1fr 160px 20px; gap: 12px; align-items: center; border-top: 1px solid var(--line); }
.archive-list-inner > a:last-child { border-bottom: 1px solid var(--line); }
.archive-list-inner > a > span, .archive-list-inner > a > small { color: var(--muted); font: 10px var(--mono); }
.archive-list-inner > a > strong { font-size: 14px; }
.archive-list-inner > a > i { color: var(--green-dark); font-style: normal; }
.archive-list-inner > a:hover strong { color: var(--blue); }

.contact-ledger { margin-top: 22px; margin-bottom: 10px; display: grid; grid-template-columns: 1fr 1.6fr 1fr 1.3fr; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.contact-ledger > div { min-height: 130px; padding: 15px; display: flex; flex-direction: column; gap: 5px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--white); }
.contact-ledger > div > span { margin-bottom: auto; color: var(--green-dark); font: 9px var(--mono); text-transform: uppercase; }
.contact-ledger p { margin-bottom: 4px; color: var(--muted); font-size: 12px; }
.contact-ledger a { color: var(--blue-dark); font-size: 13px; font-weight: 700; }

.search-panel { padding-top: var(--section); padding-bottom: var(--section); }
.search-panel form { max-width: 900px; margin-inline: auto; }
.search-panel label { display: block; margin-bottom: 8px; color: var(--blue-dark); font-size: 12px; font-weight: 700; }
.search-panel form > div { display: grid; grid-template-columns: 1fr auto; gap: 8px; }
.search-panel input { min-height: 44px; padding: 10px 12px; border: 1px solid var(--line-strong); background: var(--white); }
.search-results { max-width: 900px; margin: 24px auto 0; }
.search-result { padding: 13px 0; display: block; border-top: 1px solid var(--line); }
.search-result:last-child { border-bottom: 1px solid var(--line); }
.search-result span { color: var(--green-dark); font: 9px var(--mono); text-transform: uppercase; }
.search-result strong { display: block; margin: 3px 0; color: var(--blue-dark); font-size: 17px; }
.search-result small { color: var(--muted); font-size: 11px; }

.brief-section { padding-block: var(--section); background: var(--blue-soft); border-top: 1px solid #c8deed; }
.brief-grid { display: grid; grid-template-columns: minmax(260px, .82fr) minmax(0, 1.4fr); gap: clamp(28px, 5vw, 70px); }
.brief-copy .eyebrow { margin-bottom: 12px; }
.brief-copy h2 { color: var(--blue-dark); }
.brief-copy > p { color: var(--muted); font-size: 13px; }
.brief-copy dl { margin: 22px 0 0; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.brief-copy dl div { padding-top: 9px; border-top: 1px solid #b9d5e7; }
.brief-copy dt { color: var(--muted); font: 9px var(--mono); text-transform: uppercase; }
.brief-copy dd { margin: 2px 0 0; color: var(--blue-dark); font-weight: 800; }
.brief-form { display: grid; grid-template-columns: 1fr 1fr; gap: 13px 12px; }
.brief-form label { display: grid; gap: 4px; align-content: start; color: var(--muted); font: 9px var(--mono); text-transform: uppercase; }
.brief-form input, .brief-form select, .brief-form textarea { width: 100%; min-height: 42px; padding: 8px 10px; border: 1px solid #b6ccda; border-radius: 0; background: var(--white); color: var(--ink); font: 14px/1.45 var(--sans); text-transform: none; }
.brief-form textarea { resize: vertical; }
.brief-form input[aria-invalid="true"], .brief-form textarea[aria-invalid="true"] { border-color: var(--danger); }
.brief-form .field-wide { grid-column: 1 / -1; }
.field-error { min-height: 11px; color: var(--danger); font: 9px var(--mono); text-transform: none; }
.brief-form .button { justify-self: start; }

.map-panel { position: relative; min-height: 280px; padding-block: var(--section); overflow: hidden; background: var(--blue-dark); color: #fff; }
.map-grid { display: grid; grid-template-columns: minmax(0, .8fr) minmax(360px, 1.2fr); gap: 40px; align-items: center; }
.map-grid h2 { margin-top: 8px; }
.map-grid p { max-width: 520px; color: #c2d8e7; }
.map-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; }
.map-actions .button { border-color: #88abc5; color: #fff; }
.map-actions .button:hover { background: #0d568c; }
.map-actions > a { color: #caeb9e; font-size: 11px; font-weight: 700; }
.map-placeholder { min-height: 190px; padding: 20px; display: flex; flex-direction: column; justify-content: space-between; background: #0a4b7d; border: 1px solid #45769a; }
.map-placeholder span { color: #9fc0d7; font: 9px var(--mono); }
.map-placeholder strong { font-size: 20px; }
.map-placeholder iframe { width: 100%; height: 100%; min-height: 260px; border: 0; }

.site-footer { padding-top: 38px; background: #062f53; color: #fff; }
.footer-grid { padding-bottom: 32px; display: grid; grid-template-columns: 1.25fr .8fr .8fr 1.1fr; gap: 32px; }
.footer-grid > div, .footer-grid nav { min-width: 0; display: grid; align-content: start; gap: 5px; }
.footer-kicker { margin-bottom: 10px; color: #b9e481; }
.footer-company > strong, .footer-contact > a:first-of-type { font-size: 18px; }
.footer-company p { max-width: 330px; margin: 3px 0; color: #b9cfde; font-size: 12px; }
.footer-contact a, .footer-nav a { min-height: 27px; padding: 4px 0; color: #d9e7f0; font-size: 12px; }
.footer-contact a:hover, .footer-nav a:hover { color: #fff; }
.footer-platforms { gap: 7px !important; }
.platform-link { min-height: 48px; padding: 7px; display: grid; grid-template-columns: 92px 1fr; gap: 10px; align-items: center; border: 1px solid #35617f; }
.platform-link:hover { background: #0a426e; }
.platform-link img { width: auto; max-width: 88px; max-height: 28px; }
.platform-link span { display: grid; }
.platform-link strong { font-size: 11px; }
.platform-link small, .footer-platforms > small { color: #a9c2d3; font-size: 9px; }
.footer-platforms > small { margin-top: 5px; line-height: 1.35; }
.footer-bottom { min-height: 52px; padding-block: 12px; display: flex; justify-content: space-between; align-items: center; gap: 18px; border-top: 1px solid #35617f; color: #a9c2d3; font: 9px var(--mono); }
.amg-credit { display: flex; align-items: center; gap: 7px; }
.amg-credit img { width: 54px; }
.amg-credit strong { color: #fff; }

.not-found { min-height: 440px; padding: clamp(60px, 8vw, 110px) var(--gutter); background: var(--white); }
.not-found > span { color: var(--green-dark); font: 11px var(--mono); }
.not-found h1 { max-width: 700px; margin-top: 12px; }
.not-found p { max-width: 600px; color: var(--muted); }
.not-found > div { display: flex; flex-wrap: wrap; gap: 8px; }

@media (max-width: 1240px) {
  .header-row { grid-template-columns: 108px minmax(0, 1fr) 40px; gap: 10px; }
  .nav-main { padding-inline: 2px; font-size: 9px; }
  .mega-toggle { width: 12px; margin-right: 0; }
  .source-layout.has-toc { grid-template-columns: 200px minmax(0, 760px); }
}

@media (max-width: 1120px) {
  .desktop-nav { display: none; }
  .header-row { min-height: 58px; grid-template-columns: 1fr 38px 42px; }
  .search-link { justify-self: end; }
  .menu-toggle { display: flex; }
  .home-hero { grid-template-columns: minmax(0, 1fr) minmax(360px, .9fr); }
  .catalog-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-ledger { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  .header-address, .header-email { display: none; }
  .utility-inner { justify-content: space-between; }
  .home-hero, .page-hero.has-media { grid-template-columns: 1fr; }
  .home-hero-media { min-height: 300px; }
  .audience-switch { grid-template-columns: 1fr; }
  .section-heading > div { display: grid; gap: 8px; }
  .source-layout.has-toc { grid-template-columns: 1fr; }
  .page-toc { position: static; max-height: none; }
  .source-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .archive-list-inner > a { grid-template-columns: 34px 1fr 20px; }
  .archive-list-inner > a > small { grid-column: 2; }
  .brief-grid { grid-template-columns: 1fr; }
  .map-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  :root { --section: 32px; }
  body { font-size: 14px; }
  .shell { padding-inline: 16px; }
  .utility-bar, .utility-inner { min-height: 30px; }
  .utility-inner { padding-inline: 10px; gap: 8px; font-size: 8.5px; }
  .header-hours { white-space: nowrap; }
  .header-phone { font-size: 9px; }
  .header-row { min-height: 54px; padding-inline: 12px; }
  .brand { width: 96px; }
  h1 { font-size: clamp(30px, 8.5vw, 34px); line-height: 1.06; }
  h2 { font-size: clamp(24px, 7vw, 30px); }
  h3 { font-size: 18px; }
  .breadcrumbs { min-height: 32px; }
  .breadcrumbs ol { font-size: 9px; }
  .home-hero { padding-top: 30px; padding-bottom: 28px; gap: 24px; }
  .home-hero-copy > p, .page-hero-copy > p { font-size: 14px; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-actions .button { width: 100%; }
  .home-hero-media { min-height: 235px; }
  .hero-facts { grid-template-columns: 1fr 1fr 1fr; }
  .hero-facts dt { font-size: 17px; }
  .audience-switch { gap: 8px; }
  .audience-switch a { min-height: 98px; padding: 14px; }
  .audience-switch strong { font-size: 17px; }
  .section-heading { grid-template-columns: 30px 1fr; gap: 8px; }
  .catalog-grid { grid-template-columns: 1fr; }
  .catalog-card { min-height: 190px; padding: 14px; }
  .catalog-card > img { height: 150px; }
  .page-hero { padding-top: 30px; padding-bottom: 30px; gap: 22px; }
  .page-hero-media { height: 240px; }
  .page-hero-media figcaption { font-size: 8px; }
  .source-gallery { padding-block: 18px; }
  .source-gallery-grid { grid-template-columns: 1fr; gap: 6px; }
  .source-gallery img { height: 220px; }
  .source-layout { gap: 22px; }
  .source-content h2 { margin-top: 28px; font-size: 24px; }
  .source-content h3 { margin-top: 23px; font-size: 19px; }
  .source-content table { width: calc(100vw - 32px); }
  .contact-ledger { grid-template-columns: 1fr; }
  .contact-ledger > div { min-height: 108px; }
  .archive-list-inner > a { grid-template-columns: 28px 1fr 16px; gap: 8px; }
  .brief-copy dl { grid-template-columns: 1fr; }
  .brief-form { grid-template-columns: 1fr; }
  .brief-form .field-wide { grid-column: 1; }
  .search-panel form > div { grid-template-columns: 1fr; }
  .map-grid { gap: 22px; }
  .map-placeholder { min-height: 160px; }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .amg-credit { flex-wrap: wrap; }
}

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

@media print {
  .site-header, .site-footer, .brief-section, .map-panel, .page-toc, .button { display: none !important; }
  body, .page-hero, .source-layout { background: #fff; color: #000; }
  .source-layout.has-toc { display: block; }
  a { color: #000; text-decoration: underline; }
}
