:root {
  --navy: #071d49;
  --navy-2: #0b2f6b;
  --blue: #1f5aa6;
  --red: #b51f2e;
  --red-2: #d12a3b;
  --ink: #132238;
  --muted: #5f6d7c;
  --paper: #ffffff;
  --soft: #f5f7fb;
  --line: #dce2ea;
  --gold: #d6ae52;
  --radius: 18px;
  --shadow: 0 18px 45px rgba(7, 29, 73, .12);
  --container: 1180px;
}

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

.utility-bar { background: #051536; color: #dce7ff; font-size: .82rem; }
.utility-inner { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.utility-inner nav { display: flex; gap: 22px; }
.utility-inner a { text-decoration: none; opacity: .88; }
.utility-inner a:hover { opacity: 1; text-decoration: underline; }

.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.96); backdrop-filter: blur(14px); border-bottom: 1px solid rgba(7,29,73,.08); }
.header-inner { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-mark { width: 48px; height: 48px; border-radius: 50%; background: var(--navy); border: 3px solid #fff; outline: 2px solid var(--red); position: relative; box-shadow: 0 4px 14px rgba(7,29,73,.22); flex: 0 0 48px; }
.brand-cross::before, .brand-cross::after { content: ""; position: absolute; background: #fff; left: 50%; top: 50%; transform: translate(-50%,-50%); border-radius: 2px; }
.brand-cross::before { width: 4px; height: 26px; }
.brand-cross::after { width: 18px; height: 4px; top: 43%; }
.brand-star { position: absolute; right: 2px; bottom: 1px; font-size: .62rem; color: #fff; background: var(--red); width: 19px; height: 19px; border-radius: 50%; display: grid; place-items: center; border: 2px solid #fff; }
.brand-copy { display: grid; line-height: 1.1; }
.brand-copy strong { font-size: 1.25rem; letter-spacing: .03em; color: var(--navy); }
.brand-copy small { margin-top: 4px; font-size: .71rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }
.primary-nav { display: flex; align-items: center; gap: 23px; }
.primary-nav a { text-decoration: none; font-size: .91rem; font-weight: 700; color: #26364c; }
.primary-nav a:hover { color: var(--red); }
.primary-nav .nav-cta { background: var(--red); color: #fff; padding: 11px 17px; border-radius: 999px; }
.primary-nav .nav-cta:hover { color: #fff; background: #991925; }
.menu-toggle { display: none; width: 44px; height: 44px; border: 0; border-radius: 10px; background: var(--soft); padding: 10px; }
.menu-toggle span { display: block; height: 2px; background: var(--navy); margin: 5px 0; }

.hero { min-height: 680px; position: relative; overflow: hidden; background: linear-gradient(120deg, #06183d 0%, #0a2d69 55%, #0d3f89 100%); color: #fff; }
.hero::after { content: ""; position: absolute; inset: auto -8% -38% 34%; height: 520px; border-radius: 50%; background: rgba(255,255,255,.055); transform: rotate(-10deg); }
.hero-stars { position: absolute; inset: 0 50% 0 0; opacity: .12; background-image: radial-gradient(circle, #fff 1.3px, transparent 1.4px); background-size: 34px 34px; mask-image: linear-gradient(90deg, #000 0%, transparent 95%); }
.hero-stripes { position: absolute; right: -30px; top: 0; width: 42%; height: 100%; opacity: .06; transform: skewX(-10deg); background: repeating-linear-gradient(to bottom, #fff 0 42px, transparent 42px 84px); }
.hero-grid { position: relative; z-index: 2; min-height: 680px; display: grid; grid-template-columns: 1.25fr .75fr; align-items: center; gap: 50px; }
.eyebrow, .section-kicker { letter-spacing: .15em; font-size: .78rem; font-weight: 850; color: var(--red); margin: 0 0 14px; }
.hero .eyebrow { color: #ffced3; }
.hero h1 { margin: 0; font-size: clamp(3.4rem, 6.8vw, 6.3rem); line-height: .94; letter-spacing: -.055em; max-width: 820px; }
.hero h1 span { color: #ffb9c0; }
.hero-lead { max-width: 750px; font-size: 1.18rem; color: #dce8ff; margin: 28px 0 30px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.button { display: inline-flex; justify-content: center; align-items: center; min-height: 48px; padding: 12px 20px; border-radius: 999px; text-decoration: none; font-weight: 800; border: 2px solid transparent; transition: .2s ease; }
.button:hover { transform: translateY(-1px); }
.button-light { background: #fff; color: var(--navy); }
.button-outline-light { border-color: rgba(255,255,255,.6); color: #fff; }
.button-navy { background: var(--navy); color: #fff; }
.button-red { background: var(--red); color: #fff; }
.button-outline-navy { border-color: var(--navy); color: var(--navy); }
.hero-note { font-size: .84rem; color: #aebfde; margin-top: 20px; }
.hero-note a { color: #fff; font-weight: 800; }
.hero-emblem { display: grid; place-items: center; }
.usa-badge { width: min(360px, 100%); aspect-ratio: 1; border-radius: 50%; border: 1px solid rgba(255,255,255,.26); background: radial-gradient(circle at 30% 20%, rgba(255,255,255,.18), rgba(255,255,255,.06) 46%, rgba(255,255,255,.02) 68%); box-shadow: inset 0 0 0 14px rgba(255,255,255,.035), 0 30px 70px rgba(0,0,0,.22); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; backdrop-filter: blur(6px); }
.badge-kicker { font-size: .75rem; letter-spacing: .28em; font-weight: 800; color: #d5e2ff; }
.usa-badge strong { display: block; font-size: 6rem; line-height: 1; letter-spacing: -.07em; margin: 6px 0 12px; }
.badge-rule { width: 110px; height: 5px; background: linear-gradient(90deg, var(--red), #fff, var(--red)); border-radius: 8px; }
.badge-sub { max-width: 210px; margin-top: 14px; font-size: .72rem; letter-spacing: .13em; font-weight: 800; color: #dce8ff; }
.badge-stars { margin-top: 14px; letter-spacing: .22em; color: #fff; font-size: .74rem; }

.quick-links { margin-top: -42px; position: relative; z-index: 5; }
.quick-grid { display: grid; grid-template-columns: repeat(4, 1fr); background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.quick-card { padding: 25px 22px; display: flex; gap: 15px; text-decoration: none; border-right: 1px solid var(--line); min-height: 120px; align-items: center; }
.quick-card:last-child { border-right: 0; }
.quick-card:hover { background: #fafbfe; }
.quick-icon { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; background: #eef3fb; color: var(--navy); font-size: 1.3rem; font-weight: 900; flex: 0 0 42px; }
.quick-card strong, .quick-card small { display: block; }
.quick-card strong { color: var(--navy); font-size: .96rem; }
.quick-card small { color: var(--muted); margin-top: 3px; line-height: 1.35; }

.section { padding: 100px 0; }
.section-light { background: var(--soft); }
.section h2 { margin: 0 0 20px; font-size: clamp(2.25rem, 4vw, 4rem); line-height: 1.05; letter-spacing: -.04em; color: var(--navy); }
.section p { color: var(--muted); }
.section-lead { font-size: 1.12rem; }
.split-layout { display: grid; grid-template-columns: 1.1fr .9fr; gap: 72px; align-items: center; }
.inline-actions { display: flex; flex-direction: column; gap: 8px; margin-top: 25px; }
.text-link { color: var(--navy); font-weight: 800; text-decoration: none; }
.text-link:hover { color: var(--red); }
.mission-card { background: var(--navy); color: #fff; border-radius: 26px; padding: 38px; position: relative; overflow: hidden; box-shadow: var(--shadow); }
.flag-ribbon { position: absolute; top: 0; left: 0; right: 0; height: 7px; display: grid; grid-template-columns: 1fr 1fr 1fr; }
.flag-ribbon span:nth-child(1), .flag-ribbon span:nth-child(3) { background: var(--red); }
.flag-ribbon span:nth-child(2) { background: #fff; }
.mission-label { color: #ffb9c0 !important; font-weight: 850; letter-spacing: .15em; font-size: .74rem; }
.mission-card blockquote { margin: 15px 0 28px; font-size: 1.55rem; line-height: 1.35; font-weight: 750; }
.mission-points { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; color: #d9e5ff; font-size: .92rem; }

.section-heading { max-width: 680px; margin-bottom: 45px; }
.section-heading.centered { text-align: center; margin-left: auto; margin-right: auto; }
.beliefs-section { background: #fff; }
.belief-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.belief-grid article { padding: 38px 28px 35px; border-right: 1px solid var(--line); }
.belief-grid article:last-child { border-right: 0; }
.belief-grid article span { color: var(--red); font-weight: 900; font-size: .78rem; }
.belief-grid h3 { font-size: 1.35rem; margin: 12px 0 10px; color: var(--navy); }
.belief-grid p { margin: 0; font-size: .94rem; }
.center-action { margin-top: 36px; text-align: center; }

.ministry-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.ministry-card { min-height: 220px; border-radius: 22px; color: #fff; padding: 30px; text-decoration: none; display: flex; justify-content: space-between; align-items: flex-end; overflow: hidden; position: relative; transition: .2s ease; }
.ministry-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.ministry-card::after { content: ""; width: 190px; height: 190px; border: 35px solid rgba(255,255,255,.06); border-radius: 50%; position: absolute; right: -48px; top: -40px; }
.ministry-card.navy { background: #071d49; }
.ministry-card.red { background: #a81d2b; }
.ministry-card.blue { background: #16569b; }
.ministry-card.slate { background: #39475b; }
.ministry-no { position: absolute; top: 24px; left: 28px; font-size: .75rem; letter-spacing: .16em; opacity: .7; }
.ministry-card h3 { margin: 0 0 4px; font-size: 1.65rem; }
.ministry-card p { color: rgba(255,255,255,.78); margin: 0 0 15px; }
.ministry-card div span { font-weight: 800; font-size: .9rem; }

.locations-section { background: linear-gradient(180deg, #fff, #f6f8fc); }
.location-intro { display: flex; justify-content: space-between; gap: 50px; align-items: flex-end; }
.location-intro > div:first-child { max-width: 760px; }
.location-count { display: flex; align-items: center; gap: 14px; color: var(--navy); }
.location-count strong { font-size: 4.2rem; line-height: .9; letter-spacing: -.05em; }
.location-count span { font-size: .83rem; text-transform: uppercase; letter-spacing: .1em; font-weight: 800; color: var(--muted); }
.location-tools { margin: 35px 0 25px; }
.search-box { max-width: 560px; border: 1px solid var(--line); background: #fff; border-radius: 999px; min-height: 54px; padding: 0 18px; display: flex; gap: 10px; align-items: center; box-shadow: 0 5px 20px rgba(7,29,73,.05); }
.search-box span { color: var(--navy); font-size: 1.25rem; }
.search-box input { border: 0; outline: 0; width: 100%; font: inherit; background: transparent; color: var(--ink); }
.locations-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.location-card { border: 1px solid var(--line); border-radius: 18px; background: #fff; padding: 24px; min-height: 220px; display: flex; flex-direction: column; }
.location-state { margin: 0; font-size: .76rem; color: var(--red); letter-spacing: .14em; font-weight: 900; text-transform: uppercase; }
.location-card h3 { margin: 8px 0 8px; color: var(--navy); font-size: 1.35rem; }
.location-card address { color: var(--muted); font-style: normal; font-size: .92rem; margin-bottom: 22px; }
.location-card a { margin-top: auto; text-decoration: none; color: var(--navy); font-weight: 850; font-size: .9rem; }
.location-card a:hover { color: var(--red); }
.no-results { grid-column: 1 / -1; padding: 30px; text-align: center; background: #fff; border: 1px dashed var(--line); border-radius: 16px; color: var(--muted); }
.location-source { margin-top: 20px; font-size: .78rem; }

.resources-section { background: #06183d; color: #fff; position: relative; overflow: hidden; }
.resources-section::after { content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .06; background-image: radial-gradient(circle, #fff 1px, transparent 1px); background-size: 28px 28px; }
.resources-section .container { position: relative; z-index: 1; }
.light-heading h2, .light-heading p { color: #fff; }
.light-heading p { opacity: .78; }
.resource-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.resource-grid a { text-decoration: none; color: #fff; border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.055); border-radius: 18px; padding: 26px; min-height: 190px; }
.resource-grid a:hover { background: rgba(255,255,255,.10); border-color: rgba(255,255,255,.35); }
.resource-grid span { font-size: .7rem; color: #ffbec4; letter-spacing: .15em; font-weight: 900; }
.resource-grid h3 { margin: 16px 0 7px; font-size: 1.25rem; }
.resource-grid p { color: #bccae5; margin: 0; font-size: .9rem; }

.contact-section { background: #fff; }
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 70px; align-items: center; }
.contact-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.national-card { background: #f3f6fb; border: 1px solid var(--line); border-radius: 24px; padding: 34px; }
.national-card-label { font-size: .72rem; letter-spacing: .14em; font-weight: 900; color: var(--red) !important; }
.national-card > strong { font-size: clamp(2.2rem, 4vw, 3.4rem); color: var(--navy); letter-spacing: -.04em; }
.mini-url-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.mini-url-list span { background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 7px 11px; font-size: .76rem; color: var(--navy); font-weight: 700; }

.site-footer { background: #03112e; color: #b8c7e4; padding: 70px 0 25px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr .65fr .85fr; gap: 60px; }
.brand-footer .brand-copy strong { color: #fff; }
.brand-footer .brand-copy small { color: #a7b8d8; }
.footer-grid p { max-width: 440px; }
.footer-grid h3 { color: #fff; font-size: .88rem; text-transform: uppercase; letter-spacing: .12em; margin: 0 0 15px; }
.footer-grid > div:nth-child(n+2) { display: flex; flex-direction: column; gap: 9px; }
.footer-grid a { text-decoration: none; }
.footer-grid a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 50px; padding-top: 22px; display: flex; justify-content: space-between; gap: 20px; font-size: .78rem; }

@media (max-width: 980px) {
  .utility-inner > span { display: none; }
  .utility-inner { justify-content: center; }
  .primary-nav { position: absolute; left: 20px; right: 20px; top: calc(100% + 10px); background: #fff; border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow); padding: 16px; display: none; flex-direction: column; align-items: stretch; gap: 6px; }
  .primary-nav.open { display: flex; }
  .primary-nav a { padding: 10px 8px; }
  .primary-nav .nav-cta { text-align: center; }
  .menu-toggle { display: block; }
  .hero-grid { grid-template-columns: 1fr; min-height: 700px; padding: 90px 0; }
  .hero-emblem { display: none; }
  .quick-grid { grid-template-columns: 1fr 1fr; }
  .quick-card:nth-child(2) { border-right: 0; }
  .quick-card:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .split-layout, .contact-grid { grid-template-columns: 1fr; gap: 45px; }
  .belief-grid { grid-template-columns: 1fr 1fr; }
  .belief-grid article:nth-child(2) { border-right: 0; }
  .belief-grid article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .locations-grid { grid-template-columns: 1fr 1fr; }
  .resource-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  .container { width: min(100% - 28px, var(--container)); }
  .utility-inner nav { gap: 14px; font-size: .74rem; }
  .header-inner { min-height: 74px; }
  .brand-copy small { display: none; }
  .brand-mark { width: 43px; height: 43px; flex-basis: 43px; }
  .hero { min-height: 650px; }
  .hero-grid { min-height: 650px; padding: 70px 0 95px; }
  .hero h1 { font-size: clamp(3.2rem, 15vw, 5.2rem); }
  .hero-lead { font-size: 1.03rem; }
  .hero-actions .button { width: 100%; }
  .quick-links { margin-top: -34px; }
  .quick-grid { grid-template-columns: 1fr; }
  .quick-card { min-height: 95px; border-right: 0; border-bottom: 1px solid var(--line) !important; }
  .quick-card:last-child { border-bottom: 0 !important; }
  .section { padding: 72px 0; }
  .mission-card { padding: 30px 24px; }
  .mission-card blockquote { font-size: 1.3rem; }
  .mission-points { grid-template-columns: 1fr; }
  .belief-grid { grid-template-columns: 1fr; }
  .belief-grid article { border-right: 0; border-bottom: 1px solid var(--line); }
  .belief-grid article:last-child { border-bottom: 0; }
  .ministry-grid, .locations-grid, .resource-grid { grid-template-columns: 1fr; }
  .location-intro { display: block; }
  .location-count { margin-top: 25px; }
  .footer-grid { grid-template-columns: 1fr; gap: 38px; }
  .footer-bottom { flex-direction: column; }
}
