/*
Theme Name:  BrandShyp
Theme URI:   https://brandshyp.org
Description: BrandShyp standalone theme — light-first, dual-audience (commercial + government) design system. De-Astra'd from brandshyp-child.
Author:      BrandShyp LLC
Author URI:  https://brandshyp.org
Version:     2.0.0
License:     GNU General Public License v2 or later
Text Domain: brandshyp
*/

/* ============================================================
   BrandShyp Design System v2
   Light-first · navy + gold · commercial + government
   ============================================================ */

/* ── Tokens ── */
:root {
  --navy:    #030d4e;
  --navy-2:  #0a1668;
  --gold:    #f8a01c;   /* brand gold — use on dark */
  --gold-dk: #c87000;   /* AA gold on light */
  --white:   #ffffff;
  --ink:     #0f172a;
  --text:    #334155;
  --muted:   #64748b;
  --light:   #94a3b8;
  --bg:      #f7f8fc;   /* soft section bg (legacy --bg meaning kept) */
  --border:  #e6e9f0;
  --line:    #e6e9f0;
  --green:   #16a34a;
  --mono:    'SF Mono','Roboto Mono',ui-monospace,monospace;
  --sans:    'Poppins',system-ui,sans-serif;
  --serif:   'DM Serif Display',Georgia,serif;
  --radius:  14px;
  --r-sm:    10px;
  --r-pill:  999px;
  --maxw:    1180px;
  --shadow:  0 1px 2px rgba(15,23,42,.04), 0 12px 32px rgba(3,13,78,.06);
  --shadow-lg: 0 24px 60px rgba(3,13,78,.12);
}

/* ── Skip link (WCAG 2.4.1) — fixed because header is sticky ── */
.skip-link {
  position: fixed; top: -9999px; left: 0;
  background: var(--navy); color: #fff; padding: 12px 24px;
  font-size: .9rem; font-weight: 700; z-index: 9999; text-decoration: none;
  border-radius: 0 0 6px 0; transition: top .15s;
}
.skip-link:focus { top: 0; outline: 2px solid var(--gold); outline-offset: 2px; }

/* ── Reset ── */
*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; -webkit-text-size-adjust: 100%; scrollbar-gutter: stable; }
body {
  margin: 0; font-family: var(--sans); font-size: 17px; line-height: 1.65;
  color: var(--text); background: var(--white); overflow-x: clip; width: 100%;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ── WordPress content wrapper (replaces Astra #content + layout meta) ── */
#content.bs-content { width: 100%; }
#content.bs-content > main,
#content.bs-content > .entry-content { width: 100%; }

/* ── Layout helpers ── */
.wrap, .container { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.section { padding: 92px 6%; }
.section-sm { padding: 56px 6%; }
/* Home sections: 6% gutter from the edge, inner .wrap centered at content width (no double padding) */
.home-sec { padding: 92px 6%; }
.home-sec.soft { background: var(--bg); }
.home-sec > .wrap { padding-left: 0; padding-right: 0; }
.section-soft, .section-light { background: var(--bg); }
.section-dark, .section-navy { background: var(--navy); color: #fff; }

/* ── Typography ── */
h1,h2,h3,h4 { font-family: var(--sans); font-weight: 800; line-height: 1.1; color: var(--navy); letter-spacing: -.02em; margin: 0; }
h1 { font-size: clamp(2.4rem, 5.4vw, 4rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.7rem); }
h3 { font-size: 1.2rem; font-weight: 700; }
p { color: var(--text); margin: 0; }
.serif { font-family: var(--serif); font-weight: 400; letter-spacing: -.01em; }
.lead { font-size: 1.18rem; color: var(--text); max-width: 680px; line-height: 1.6; }
.outline-text, .stroke { -webkit-text-stroke: 1.6px var(--navy); color: transparent; }

/* ── One reading column for loose content dropped straight into a section.
   Bare <p>/<ul>/<table> carried no max-width and stretched full-bleed (thin
   crammed bands); a standalone .card callout still spanned full width, so the
   capped prose looked smushed next to it. Cap them all to ONE width (--readw)
   so the section reads as a clean left column aligned under the header, with
   the constellation graphic in the right gutter. Scoped with :not([class]) so
   .lead/.check-list and grid cards (.grid-2/.grid-3 > .card) are untouched. ── */
.section { --readw: 820px; }
.section > p:not([class]),
.section > ul:not([class]),
.section > ol:not([class]),
.section > dl:not([class]),
.section > blockquote:not([class]) { max-width: var(--readw); }
/* Vertical rhythm: the theme zeroes p margins globally (p{margin:0}), so loose
   body content stacked tight against itself and the next block (e.g. a paragraph
   butting straight into a callout). Restore spacing for unclassed prose + the
   direct .lead, and separate standalone callout cards/tables from the text. */
.section > p:not([class]),
.section > .lead,
.section > ul:not([class]),
.section > ol:not([class]),
.section > dl:not([class]),
.section > blockquote:not([class]) { margin-bottom: 1.15em; }
.section > ul:not([class]),
.section > ol:not([class]) { padding-left: 1.2em; }
.section > ul:not([class]) li,
.section > ol:not([class]) li { margin: 6px 0; line-height: 1.6; }
/* Standalone callout cards (a direct child of the section, NOT a grid item)
   align to the same column and sit clear of the surrounding text. */
.section > .card { max-width: var(--readw); margin: 26px 0; }

/* Bare tables had no theme styling at all (raw browser default). Give unclassed,
   un-inline-styled tables a contained, legible default. Inline-styled tables on
   other pages keep their own look (excluded via :not([style])). */
.section table:not([class]):not([style]) {
  width: 100%; max-width: var(--readw); margin: 24px 0;
  border-collapse: collapse; font-size: .95rem;
}
.section table:not([class]):not([style]) th,
.section table:not([class]):not([style]) td {
  text-align: left; padding: 11px 14px; vertical-align: top;
  border-bottom: 1px solid var(--line);
}
.section table:not([class]):not([style]) thead th {
  font-family: var(--mono); font-size: .68rem; letter-spacing: .08em;
  text-transform: uppercase; color: var(--muted);
  border-bottom: 2px solid var(--border);
}

/* .callout — the blog posts style this inline as `.bs-post .callout`, but that
   scope never reached the 32 reference pages that also use a bare .callout, so
   there it rendered as an unstyled full-width band. Give it a theme-level
   baseline matching the blog look (light tint + gold left rule) plus the
   reading-column cap + vertical margin. Blog posts keep their own more-specific
   .bs-post .callout rules. */
.callout {
  max-width: var(--readw, 820px); margin: 28px 0; padding: 20px 24px;
  background: #f0f4ff; border-left: 4px solid var(--gold); border-radius: 0 4px 4px 0;
}
.callout > p { margin: 0; }
.callout > p + p { margin-top: .8em; }
/* unstyled text-color utility used on 8 pages */
.muted { color: var(--muted); }

.gold-text { color: var(--gold-dk); }
.white-text { color: #fff; }
.navy-text { color: var(--navy); }
.ghost { color: var(--navy); opacity: .22; }

/* ── Kickers & labels ── */
.kicker {
  font-family: var(--mono); font-size: .68rem; font-weight: 700;
  letter-spacing: .22em; color: var(--gold-dk); text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 14px;
}
.kicker::before { content:""; width: 22px; height: 1px; background: var(--gold); display: inline-block; }
.num-tag { font-family: var(--mono); font-size: .65rem; color: var(--gold-dk); font-weight: 800; letter-spacing: .1em; margin-bottom: 10px; display: block; }
.tag, .badge {
  display: inline-flex; align-items: center; gap: 6px; background: var(--navy); color: #fff;
  font-family: var(--mono); font-size: .6rem; font-weight: 800; padding: 5px 12px;
  letter-spacing: .08em; border-radius: 6px;
}
.dot { width: 7px; height: 7px; background: var(--green); border-radius: 50%; display: inline-block; box-shadow: 0 0 7px var(--green); }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--sans); font-weight: 700; font-size: .95rem; letter-spacing: .01em;
  padding: 15px 26px; border-radius: var(--r-pill); cursor: pointer; border: 1.5px solid transparent;
  transition: transform .15s ease, box-shadow .2s ease, background .2s, color .2s, border-color .2s;
  white-space: nowrap; -webkit-tap-highlight-color: transparent;
}
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.btn .arr { transition: transform .15s; }
.btn:hover .arr { transform: translateX(3px); }
.btn-gold, .btn-gold:link, .btn-gold:visited { background: var(--gold); color: var(--navy); box-shadow: 0 10px 24px rgba(248,160,28,.3); }
.btn-gold:hover { box-shadow: 0 14px 30px rgba(248,160,28,.42); color: var(--navy); }
.btn-navy, .btn-primary, .btn-navy:link, .btn-primary:link, .btn-navy:visited, .btn-primary:visited { background: var(--navy); color: #fff; }
.btn-navy:hover, .btn-primary:hover { box-shadow: 0 14px 30px rgba(3,13,78,.28); color: #fff; }
.btn-ghost, .btn-ghost:link, .btn-ghost:visited { background: transparent; color: var(--navy); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--navy); color: var(--navy); }
.btn-ghost-white, .btn-ghost-w, .btn-ghost-white:link, .btn-ghost-white:visited { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn-ghost-white:hover, .btn-ghost-w:hover { border-color: #fff; background: rgba(255,255,255,.08); color: #fff; }
.btn-sm { padding: 10px 18px; font-size: .85rem; }

/* ── Trust ribbon ── */
.ribbon { background: var(--navy); color: rgba(255,255,255,.72); font-family: var(--mono); font-size: .66rem; letter-spacing: .12em; text-transform: uppercase; }
.ribbon .wrap { display: flex; justify-content: space-between; align-items: center; gap: 14px; padding-top: 9px; padding-bottom: 9px; flex-wrap: wrap; }
.ribbon b { color: #fff; }
.ribbon .live { color: #43d17a; display: inline-flex; align-items: center; gap: 7px; }
.ribbon .live::before { content:""; width: 7px; height: 7px; border-radius: 50%; background: #43d17a; box-shadow: 0 0 8px #43d17a; }

/* ── Header / Nav ── */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.85); backdrop-filter: saturate(160%) blur(12px); border-bottom: 1px solid var(--line); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 74px; width: 100%; }
.header-inner > .logo-link { margin-right: auto; }   /* pin logo left, actions right — robust even if a child toggles */
.logo-link { display: flex; align-items: center; }
.logo-img { height: 38px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 20px; font-size: .9rem; font-weight: 600; }
.nav-links a { color: var(--ink); transition: color .2s; white-space: nowrap; }
.nav-links a:hover, .nav-links a.active { color: var(--gold-dk); }
.header-actions { display: flex; align-items: center; gap: 12px; margin-left: 36px; }
.nav-cta { white-space: nowrap; }
.nav-cta-mobile { display: none; }   /* shown only inside the open mobile menu */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 0; }
.hamburger span { width: 24px; height: 2px; background: var(--navy); display: block; transition: .3s; }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle { background: none; border: none; padding: 0; margin: 0; font: inherit; font-size: .9rem; font-weight: 600; color: var(--ink); cursor: pointer; display: flex; align-items: center; gap: 6px; transition: color .2s; white-space: nowrap; }
.nav-dropdown-toggle:hover, .nav-dropdown.active .nav-dropdown-toggle { color: var(--gold-dk); }
.nav-caret { font-size: .5rem; transition: transform .2s; }
.nav-dropdown-menu { display: none; position: absolute; top: 100%; right: 0; padding-top: 12px; }
.nav-dropdown-menu-inner { background: #fff; border: 1px solid var(--line); border-top: 3px solid var(--gold); border-radius: 0 0 12px 12px; min-width: 190px; box-shadow: var(--shadow); overflow: hidden; animation: dropdown-in .15s ease; }

/* ⚠️⚠️ THE MENU MUST NEVER BE TALLER THAN THE SPACE UNDER THE HEADER.
   The Free Tools menu is a fixed 640px (13 GovCon items) and opens at y=97 under the sticky
   header, so it needs 736px of viewport height. Below that it simply ran off the bottom with
   overflow-y:visible and max-height:none, and there was NO WAY TO REACH THE REST - not by
   scrolling the menu, not by scrolling the page, because the header is sticky and the menu is
   anchored to it. Measured 2026-08-30: 1280x720 cut 16px; at 150% browser zoom, which makes a
   900px window behave like 600px, it cuts ~136px and swallows the bottom of the GovCon column.
   Zoom is the common trigger, so this is not an edge case about tiny laptops.
   overflow-x stays hidden so the rounded corners still clip their children. */
.nav-dropdown-menu-inner { max-height: calc(100vh - 113px); overflow-x: hidden; overflow-y: auto; overscroll-behavior: contain; }
@keyframes dropdown-in { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }
.nav-dropdown-menu.open { display: block; }
/* Hover/focus-within only open dropdowns on real-pointer devices. On touch, a tap leaves a
   sticky :hover/:focus-within that kept the menu open and fought the JS .open toggle (mobile
   submenu buttons appeared not to work) — there, the JS .open class is the single source of truth. */
@media (hover: hover) and (pointer: fine) {
  .nav-dropdown:hover .nav-dropdown-menu, .nav-dropdown:focus-within .nav-dropdown-menu { display: block; }
}
.nav-dropdown-menu a { display: block; padding: 11px 18px; font-size: .85rem; font-weight: 600; color: var(--ink); border-bottom: 1px solid var(--line); transition: background .15s, color .15s; }
.nav-dropdown-menu a:last-child { border-bottom: none; }
.nav-dropdown-menu a:hover, .nav-dropdown-menu a.active { background: var(--bg); color: var(--gold-dk); }
/* Grouped (2-column) Free Tools mega-menu */
/* Three columns now. Safe to widen: .nav-dropdown-menu is right:0 anchored, so the menu grows
   LEFTWARD and cannot overflow the viewport's right edge. The mobile rule below collapses
   .ndm-cols to a single column, so nothing here needs a breakpoint of its own. */
.nav-dropdown-menu-inner.cols { min-width: 700px; }
.ndm-cols { display: grid; grid-template-columns: 1.05fr 1fr .95fr; }
/* The San Antonio column is a different axis from the two audience columns, so it gets a faint
   tint to read as a distinct group rather than a short afterthought beside a 13-item list. */
.ndm-col-sa { background: var(--bg); }
.ndm-note { font-size: .68rem; line-height: 1.4; color: var(--muted); padding: 6px 18px 12px; }
.ndm-col { padding-bottom: 8px; }
.ndm-col + .ndm-col { border-left: 1px solid var(--line); }
.ndm-head { font-family: var(--mono); font-size: .58rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); padding: 13px 18px 5px; }
.nav-dropdown-menu-inner.cols a { border-bottom: none; padding: 8px 18px; }
.nav-dropdown-menu-inner.cols a.ndm-all { border-top: 1px solid var(--line); padding: 12px 18px; font-weight: 700; color: var(--gold-dk); }
/* Featured row: the API platform spans both columns, so it sits at the foot of the
   mega-menu rather than inside one category (which also kept the columns balanced). */
.nav-dropdown-menu-inner.cols a.ndm-api { border-top: 1px solid var(--line); padding: 12px 18px; font-weight: 700; color: var(--navy); background: var(--bg); display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.nav-dropdown-menu-inner.cols a.ndm-api:hover { background: #eef2f7; }
.nav-dropdown-menu-inner.cols a.ndm-api.active { color: var(--gold-dk); }
.ndm-api-tag { font-family: var(--mono); font-size: .56rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--navy); background: var(--gold); padding: 3px 7px; border-radius: 3px; white-space: nowrap; }

/* ── Hero (home) ── */
.hero {
  position: relative; overflow: hidden; border-bottom: 1px solid var(--line);
  padding: 0 6%;   /* horizontal gutter; vertical comes from .hero-grid */
  background:
    radial-gradient(1200px 600px at 85% -10%, rgba(248,160,28,.10), transparent 60%),
    radial-gradient(900px 500px at 10% 0%, rgba(3,13,78,.06), transparent 55%),
    var(--white);
}
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: center; padding: 92px 0 84px; }
.hero h1 { margin: 22px 0 0; }
.hero h1 .em { color: var(--gold-dk); }
.hero-sub { margin: 26px 0 34px; max-width: 540px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust { display: flex; gap: 22px; margin-top: 32px; flex-wrap: wrap; font-size: .82rem; color: var(--muted); }
.hero-trust span { display: inline-flex; align-items: center; gap: 8px; }
.hero-trust svg { color: var(--green); flex-shrink: 0; }
/* legacy hero (interior page heroes that still use .hero-inner) */
.hero-inner { max-width: 900px; }
.hero-lead { margin-bottom: 34px; }

.hero-panel { background: var(--navy); border-radius: 22px; padding: 30px; color: #fff; position: relative; overflow: hidden; box-shadow: var(--shadow-lg); background-image: radial-gradient(600px 300px at 100% 0%, rgba(248,160,28,.22), transparent 60%), linear-gradient(160deg, var(--navy-2), var(--navy)); }
.hero-panel::before { content:""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px); background-size: 34px 34px; mask: radial-gradient(420px 320px at 70% 20%, #000, transparent 75%); pointer-events: none; }
.hp-tag { font-family: var(--mono); font-size: .62rem; letter-spacing: .2em; color: var(--gold); text-transform: uppercase; position: relative; }
.hp-stat { position: relative; margin-top: 18px; }
.hp-stat .n { font-family: var(--serif); font-size: 3.4rem; line-height: 1; }
.hp-stat .l { color: rgba(255,255,255,.6); font-size: .8rem; margin-top: 4px; }
.hp-rows { position: relative; margin-top: 26px; border-top: 1px solid rgba(255,255,255,.12); }
.hp-row { display: flex; justify-content: space-between; gap: 12px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.1); font-family: var(--mono); font-size: .72rem; }
.hp-row .k { color: rgba(255,255,255,.55); letter-spacing: .08em; text-transform: uppercase; }
.hp-row .v { color: var(--gold); font-weight: 700; }

/* ── Page header (interior pages) ── */
.page-header { padding: 40px 6% 34px; background: var(--white); border-bottom: 1px solid var(--line); }
.page-header .ph-org { font-family: var(--mono); font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--navy); font-weight: 800; margin-bottom: 12px; }
.page-header .kicker { margin-bottom: 8px; }
.page-header h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.page-header-meta { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }

/* ── San Antonio Crime Map (page 3967): center the content column on wide screens.
   The dist layout uses full-bleed .section / .page-header (6% side padding, no
   max-width), so on ultrawide monitors every block pins to the far left. Grow the
   side padding once the viewport passes ~1200px so the content band centers, while
   the full-bleed backgrounds + decorative ::before layers (position:absolute) stay
   edge to edge. Prose keeps its left alignment on purpose (the net graphic lives in
   the right gutter). Scoped to this page only — zero blast radius. ── */
.page-id-3967 .section,
.page-id-3967 .page-header {
  padding-left: max(6%, calc((100% - 1200px) / 2));
  padding-right: max(6%, calc((100% - 1200px) / 2));
}

/* ── API platform pages (3981 crime-data-api, 3983 developers, 3984 compliance-api).
   Their bodies are shortcodes whose containers (.bsapi / .bsdev) center themselves at
   max-width:1000px. The .page-header above them is full-bleed with 6% padding, so its
   H1 would land far left of the content it introduces. Center its inner column to the
   same 1000px so the title lines up with the content. ── */
.page-id-3981 .page-header,
.page-id-3983 .page-header,
.page-id-3984 .page-header {
  padding-left: max(6%, calc((100% - 1000px) / 2));
  padding-right: max(6%, calc((100% - 1000px) / 2));
}
.page-ident { font-family: var(--mono); font-size: .7rem; letter-spacing: .12em; color: var(--muted); text-transform: uppercase; margin-top: 12px; }
.page-ident a { color: var(--muted); border-bottom: 1px dotted rgba(100,116,139,.45); }
.page-ident a:hover { color: var(--gold-dk); border-bottom-color: var(--gold); }
.page-ident .page-ident-active { color: var(--green); }

/* ── Press strip ── */
.press, .bs-press-bar { background: var(--bg); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 26px 0; }
.press-label, .bs-press-label { text-align: center; font-family: var(--mono); font-size: .62rem; letter-spacing: .24em; color: var(--muted); text-transform: uppercase; margin-bottom: 18px; }
.press-row { display: flex; align-items: center; justify-content: center; gap: 50px; flex-wrap: wrap; }
.press-row img { height: 30px; width: auto; opacity: .5; filter: grayscale(1); transition: .25s; }
.press-row a:hover img { opacity: 1; filter: none; }

/* ── Section header ── */
.section-header { max-width: 660px; margin-bottom: 52px; }
.section-header.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-header h2 { margin: 14px 0 16px; }
.section-header p { max-width: 600px; color: var(--muted); font-size: 1.08rem; }

/* ── Cards ── */
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; transition: transform .2s, box-shadow .2s; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card-gold { border-top: 4px solid var(--gold); }
.card-navy { background: var(--navy); color: #fff; border: none; }
.card h3 { color: var(--navy); margin-bottom: 12px; }
.card-navy h3 { color: #fff; }
.card p { color: var(--muted); font-size: .98rem; }
.card-navy p { color: rgba(255,255,255,.7); }
.card-meta { font-family: var(--mono); font-size: .6rem; color: var(--gold-dk); font-weight: 800; margin-bottom: 16px; letter-spacing: .14em; text-transform: uppercase; }
.card-footer { margin-top: 22px; padding-top: 14px; border-top: 1px solid var(--line); font-family: var(--mono); font-size: .6rem; color: var(--muted); letter-spacing: .08em; }

/* ── Grids ── */
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 24px; }

/* ── Dual audience (home) ── */
.dual { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.path { position: relative; border-radius: var(--radius); padding: 40px; border: 1px solid var(--line); background: #fff; box-shadow: var(--shadow); transition: transform .2s, box-shadow .2s; display: flex; flex-direction: column; }
.path:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.path-com { background: linear-gradient(180deg,#fff,#fffdf7); border-top: 4px solid var(--gold); }
.path-gov { background: linear-gradient(180deg, var(--navy-2), var(--navy)); color: #fff; border: none; }
.path-gov h3, .path-gov .path-title { color: #fff; }
.path-gov p { color: rgba(255,255,255,.7); }
.path .eyebrow { font-family: var(--mono); font-size: .66rem; letter-spacing: .2em; text-transform: uppercase; }
.path-com .eyebrow { color: var(--gold-dk); }
.path-gov .eyebrow { color: var(--gold); }
.path-title { font-family: var(--serif); font-weight: 400; font-size: 2rem; color: var(--navy); margin: 12px 0 8px; line-height: 1.1; }
.path-desc { margin-bottom: 22px; }
.path ul { list-style: none; padding: 0; margin: 0 0 28px; display: grid; gap: 10px; }
.path li { position: relative; padding-left: 26px; font-size: .98rem; }
.path li::before { content:""; position: absolute; left: 0; top: .55em; width: 12px; height: 2px; background: var(--gold); }
.path .btn { margin-top: auto; align-self: flex-start; }

/* ── Capability cards (home) ── */
.cards3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.cap { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; transition: transform .2s, box-shadow .2s, border-color .2s; }
.cap:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.cap .ic { width: 48px; height: 48px; border-radius: 12px; background: var(--navy); color: var(--gold); display: grid; place-items: center; margin-bottom: 20px; }
.cap .ic svg { width: 24px; height: 24px; }
.cap h3 { margin-bottom: 10px; }
.cap p { color: var(--muted); font-size: .98rem; }
.cap .meta { font-family: var(--mono); font-size: .6rem; letter-spacing: .16em; color: var(--gold-dk); text-transform: uppercase; margin-bottom: 16px; }
.cap-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; font-size: .9rem; font-weight: 700; color: var(--gold-dk); transition: gap .2s; }
.cap-link:hover { gap: 11px; color: var(--gold-dk); }

/* ── Check list ── */
.check-list { list-style: none; padding-left: 0; margin: 0; }
.check-list li { padding: 6px 0 6px 22px; position: relative; font-size: .95rem; color: var(--muted); }
.check-list li::before { content:""; position: absolute; left: 0; top: .85em; width: 12px; height: 2px; background: var(--gold); }
.check-list-dark li { color: rgba(255,255,255,.82); }

/* ── Engagement snapshot panel (navy card key/value rows) ── */
.svc-snapshot { margin-top: 16px; }
.svc-snap-row { display: flex; justify-content: space-between; gap: 12px; padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,.1); font-family: var(--mono); font-size: .74rem; }
.svc-snap-row:last-child { border-bottom: none; }
.svc-snap-row .k { color: rgba(255,255,255,.55); }
.svc-snap-row .v { color: #fff; font-weight: 700; }

/* ── Value list ── */
.value-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 0; }
.value-item { padding: 28px; border-left: 3px solid var(--gold); border-top: 1px solid var(--line); }
.value-item:first-child { border-top: none; }
.value-item strong { display: block; color: var(--navy); font-weight: 700; margin-bottom: 6px; }
.value-item p { font-size: .9rem; color: var(--muted); }

/* ── Stats row / proof ── */
.stats-row { display: flex; gap: 48px; flex-wrap: wrap; margin-top: 40px; }
.stat-item .stat-val { font-family: var(--serif); font-size: 2.4rem; color: var(--navy); line-height: 1; }
.stat-item .stat-label { font-family: var(--mono); font-size: .6rem; color: var(--muted); letter-spacing: .1em; text-transform: uppercase; margin-top: 6px; }
.proof { display: grid; grid-template-columns: repeat(4,1fr); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #fff; }
.proof .item { padding: 36px 28px; border-right: 1px solid var(--line); text-align: center; }
.proof .item:last-child { border-right: none; }
.proof .n { font-family: var(--serif); font-size: 3rem; color: var(--navy); line-height: 1; }
.proof .l { font-family: var(--mono); font-size: .62rem; letter-spacing: .14em; color: var(--muted); text-transform: uppercase; margin-top: 10px; }

/* ── Credentials strip ── */
.creds { background: var(--navy); color: #fff; border-top: 3px solid var(--gold); }
.creds .wrap { padding: 40px 28px; display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.creds .lead-txt { max-width: 380px; }
.creds .lead-txt .kicker { color: var(--gold); }
.creds .lead-txt h3 { color: #fff; margin-top: 10px; font-size: 1.4rem; }
.creds-ids { display: flex; gap: 14px; flex-wrap: wrap; }
.cred { border: 1px solid rgba(255,255,255,.16); border-radius: 12px; padding: 14px 18px; min-width: 130px; background: rgba(255,255,255,.03); }
.cred .k { font-family: var(--mono); font-size: .58rem; letter-spacing: .16em; color: rgba(255,255,255,.5); text-transform: uppercase; }
.cred .v { font-family: var(--mono); font-size: .95rem; color: var(--gold); font-weight: 700; margin-top: 6px; }
.cred.verify { display: flex; align-items: center; }
.cred.verify a { color: #43d17a; font-family: var(--mono); font-size: .8rem; display: inline-flex; align-items: center; gap: 8px; }

/* ── CTA banner / box ── */
.cta-banner { padding: 80px 6%; background: var(--navy); color: #fff; display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-banner h2 { color: #fff; }
.cta-banner p { color: rgba(255,255,255,.7); margin-top: 10px; max-width: 500px; }
.cta-banner-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.cta { background: radial-gradient(700px 400px at 90% 0%, rgba(248,160,28,.16), transparent 60%), linear-gradient(160deg, var(--navy-2), var(--navy)); color: #fff; border-radius: 24px; padding: 64px 56px; text-align: center; box-shadow: var(--shadow-lg); }
.cta h2 { color: #fff; }
.cta h2 .em { color: var(--gold); }
.cta p { color: rgba(255,255,255,.72); max-width: 520px; margin: 16px auto 30px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── Glass card ── */
.glass-card { background: rgba(255,255,255,.05); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); padding: 40px; }

/* ── Contact ── */
.contact-track { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 20px; margin-top: 32px; }
.contact-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; }
.contact-card .label { font-family: var(--mono); font-size: .6rem; color: var(--gold-dk); font-weight: 800; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 14px; }
.contact-card h3 { font-size: 1rem; margin-bottom: 10px; }
.contact-card p, .contact-card a { font-size: .95rem; color: var(--muted); display: block; margin-bottom: 4px; }
.contact-card a:hover { color: var(--gold-dk); }

/* ── FAQ ── */
.faq-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 60px; align-items: start; }
.faq-list { display: flex; flex-direction: column; }
details { border-top: 1px solid var(--line); }
details:last-child { border-bottom: 1px solid var(--line); }
details summary { padding: 22px 0; font-weight: 700; font-size: 1rem; color: var(--navy); cursor: pointer; display: flex; justify-content: space-between; align-items: center; list-style: none; user-select: none; }
details summary::-webkit-details-marker { display: none; }
details summary::after { content: '+'; font-size: 1.4rem; font-weight: 300; color: var(--gold-dk); flex-shrink: 0; transition: transform .2s; }
details[open] summary::after { content: '\2212'; }
details .answer { padding: 0 0 22px; color: var(--muted); font-size: .98rem; max-width: 720px; }

/* ── NAICS ── */
.naics-grid { display: flex; flex-direction: column; }
.naics-row { display: flex; align-items: center; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.naics-code { font-family: var(--mono); font-size: .72rem; font-weight: 800; color: var(--gold-dk); min-width: 60px; }
.naics-desc { font-size: .9rem; color: var(--muted); }

/* ── Cert bar ── */
.cert-bar { display: flex; gap: 24px; flex-wrap: wrap; align-items: center; margin-top: 20px; }
.cert-item { display: flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: .65rem; font-weight: 700; color: var(--muted); }

/* ── Portfolio premium tiles ── */
.portfolio-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px,1fr)); gap: 56px 40px; margin-top: 16px; }
.portfolio-card { border: 0; background: transparent; display: flex; flex-direction: column; }
.portfolio-card-img { border-radius: 10px; overflow: hidden; background: #f1f5f9; aspect-ratio: 16/10; }
.portfolio-card-img img { width: 100%; height: 100%; object-fit: cover; }
.portfolio-card-body { padding: 22px 0 0; display: flex; flex-direction: column; flex: 1; }
.portfolio-card-body h3 { font-family: var(--serif); font-size: 1.5rem; font-weight: 400; line-height: 1.15; color: var(--navy); margin: 0 0 12px; }
.portfolio-card-body p { font-size: .95rem; color: var(--text); line-height: 1.55; margin: 0 0 22px; max-width: 56ch; flex: 1; }
.portfolio-card-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 18px; }
.portfolio-tag { font-family: var(--mono); font-size: .58rem; font-weight: 700; padding: 3px 10px; background: var(--bg); color: var(--muted); border: 1px solid var(--line); border-radius: 6px; }
.tile-meta { display: flex; justify-content: space-between; align-items: center; padding-top: 16px; border-top: 1px solid var(--line); font-family: var(--mono); font-size: .6rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); gap: 18px; flex-wrap: wrap; }
.tile-meta .tile-stack { font-weight: 700; color: var(--navy); }
.tile-meta .tile-link { color: var(--gold-dk); font-weight: 800; white-space: nowrap; transition: color .15s; }
.tile-meta .tile-link:hover { color: var(--navy); }
.deploy-specs { border-top: 1px solid var(--line); margin: 14px 0 20px; padding-top: 14px; display: flex; flex-direction: column; gap: 6px; }
.deploy-specs-row { display: flex; gap: 10px; align-items: center; font-family: var(--mono); font-size: .58rem; letter-spacing: .04em; }
.deploy-specs-row .ds-label { color: var(--muted); min-width: 68px; text-transform: uppercase; }
.deploy-specs-row .ds-val { color: var(--navy); font-weight: 700; text-transform: uppercase; }
.deploy-specs-row .ds-live { display: inline-flex; align-items: center; gap: 5px; color: var(--green); font-weight: 800; }
.deploy-specs-row .ds-live::before { content:""; width: 6px; height: 6px; border-radius: 50%; background: var(--green); flex-shrink: 0; }
.csb-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px,1fr)); gap: 56px 40px; margin-top: 16px; }
.csb-card { background: transparent; border: 0; padding: 0; display: flex; flex-direction: column; }
.csb-card-banner { background: transparent; padding: 0; display: flex; align-items: baseline; gap: 14px; margin-bottom: 10px; flex-wrap: wrap; }
.csb-card-badge { font-family: var(--mono); font-size: .62rem; font-weight: 800; letter-spacing: .16em; color: var(--gold-dk); }
.csb-card-title { color: var(--navy); font-family: var(--serif); font-size: 1.5rem; font-weight: 400; line-height: 1.15; margin: 0; }
.csb-subtitle { font-size: .85rem; color: var(--muted); margin: 0 0 14px; }
.csb-card-body { display: flex; flex-direction: column; flex: 1; }
.csb-desc { font-size: .95rem; color: var(--text); line-height: 1.55; margin: 0 0 22px; max-width: 56ch; flex: 1; }
.exit-cta { padding: 56px 6% 72px; max-width: var(--maxw); margin: 0 auto; border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: baseline; gap: 24px; flex-wrap: wrap; font-family: var(--mono); font-size: .65rem; letter-spacing: .1em; text-transform: uppercase; }
.exit-cta a.exit-cta-link { color: var(--gold-dk); font-weight: 800; font-size: .95rem; letter-spacing: .02em; }
.exit-cta a.exit-cta-link:hover { color: var(--navy); }
.exit-cta .exit-cta-id { color: var(--muted); }
.portfolio-stat-bar { display: flex; gap: 0; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.portfolio-stat-bar-item { flex: 1; padding: 28px 18px; border-right: 1px solid var(--line); text-align: center; }
.portfolio-stat-bar-item:last-child { border-right: none; }
.portfolio-stat-bar-item .psb-num { font-family: var(--serif); font-size: 2.8rem; line-height: 1; margin-bottom: 12px; color: var(--navy); display: block; }
.portfolio-stat-bar-item .psb-label { font-family: var(--mono); font-size: .55rem; letter-spacing: .14em; color: var(--muted); text-transform: uppercase; display: block; }
.psb-grid-2x2 { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.psb-grid-2x2 > .portfolio-stat-bar-item { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.psb-grid-2x2 > .portfolio-stat-bar-item:nth-child(2n) { border-right: 0; }
.psb-grid-2x2 > .portfolio-stat-bar-item:nth-last-child(-n+2) { border-bottom: 0; }
.ent-verify-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 20px; }

/* ── Security posture (capabilities) ── */
.sec-posture { background: var(--navy); color: #fff; padding: 56px 6%; border-top: 3px solid var(--gold); }
.sec-posture-inner { max-width: 1100px; margin: 0 auto; }
.sec-posture-head { display: flex; align-items: baseline; gap: 16px; flex-wrap: wrap; margin-bottom: 12px; }
.sec-posture-head .kicker { color: var(--gold); }
.sec-posture-head h2 { color: #fff; margin: 0; font-size: clamp(1.25rem, 2.6vw, 1.7rem); }
.sec-posture-sub { color: rgba(255,255,255,.55); margin: 0 0 36px; max-width: 720px; font-size: .92rem; line-height: 1.55; }
.sec-posture-grid { display: grid; grid-template-columns: repeat(2,1fr); column-gap: 48px; }
.sec-posture-row { display: grid; grid-template-columns: 132px 1fr; gap: 18px; padding: 14px 0; border-top: 1px solid rgba(255,255,255,.08); align-items: baseline; }
.sec-posture-row:first-child, .sec-posture-grid > .sec-posture-row:nth-child(2) { border-top-color: rgba(255,255,255,.18); }
.sec-posture-row .sec-key { font-family: var(--mono); font-size: .58rem; letter-spacing: .14em; color: var(--gold); text-transform: uppercase; font-weight: 700; }
.sec-posture-row .sec-val { font-size: .82rem; color: rgba(255,255,255,.88); line-height: 1.5; }
.sec-posture-row .sec-val code { font-family: var(--mono); color: var(--gold); }

/* ── Footer ── */
.site-footer { background: var(--navy); color: rgba(255,255,255,.66); padding: 70px 6% 32px; }
/* 8 grid items (brand + 7 nav columns) against a 6-column template meant the last columns
   already wrapped into a ragged second row. Stated as 4 columns so they form two clean
   rows, which is also what makes room for the derived San Antonio column in footer.php. */
.footer-inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 30px 34px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.1); max-width: var(--maxw); margin: 0 auto; }
.footer-brand .footer-logo { height: 56px; width: 56px; border-radius: 50%; margin-bottom: 18px; }
.footer-name { font-weight: 800; color: #fff; letter-spacing: .04em; font-size: .95rem; margin-bottom: 6px; }
.footer-addr { font-size: .85rem; color: rgba(255,255,255,.55); line-height: 1.7; margin-bottom: 8px; }
.footer-email, .footer-phone { font-size: .85rem; color: var(--gold); display: block; margin-top: 4px; }
.footer-phone:hover, .footer-email:hover { text-decoration: underline; }
.footer-nav { display: contents; }
.footer-nav-title { font-family: var(--mono); font-size: .6rem; color: rgba(255,255,255,.5); letter-spacing: .2em; text-transform: uppercase; margin-bottom: 16px; }
.footer-nav a { font-size: .9rem; color: rgba(255,255,255,.66); display: block; margin-bottom: 11px; transition: color .2s; }
.footer-nav a:hover { color: var(--gold); }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; display: grid; place-items: center; font-size: .72rem; color: rgba(255,255,255,.66); transition: .2s; }
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 26px; font-size: .78rem; color: rgba(255,255,255,.45); flex-wrap: wrap; gap: 10px; font-family: var(--mono); letter-spacing: .04em; max-width: var(--maxw); margin: 0 auto; }

/* ── Captain's Log hero ── */
.cl-page-hero { background: var(--navy); padding: 64px 32px 68px; text-align: center; }
.cl-page-hero .cl-kicker { font-family: var(--mono); font-size: .62rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 14px; }
.cl-page-hero h1 { font-family: var(--serif); font-weight: 400; font-size: clamp(2rem, 5vw, 3rem); color: #fff; margin: 0 0 14px; }
.cl-page-hero p { color: rgba(255,255,255,.6); font-size: 1rem; line-height: 1.7; max-width: 560px; margin: 0 auto; }

/* ── Blog archive (custom — replaces Astra .ast-* markup) ── */
.bs-archive { max-width: var(--maxw); margin: 0 auto; padding: 56px 28px 72px; }
.bs-post-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.bs-post-card { background: #fff; border: 1px solid var(--line); border-top: 3px solid var(--navy); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: box-shadow .2s, transform .2s; }
.bs-post-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.bs-post-card .thumb { aspect-ratio: 16/9; background: var(--bg); overflow: hidden; }
.bs-post-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.bs-post-card .body { padding: 24px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.bs-post-card .cat { font-family: var(--mono); font-size: .62rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-dk); margin-bottom: 8px; }
.bs-post-card h2 { font-family: var(--serif); font-weight: 400; font-size: 1.3rem; line-height: 1.3; color: var(--navy); margin: 0 0 12px; }
.bs-post-card h2 a:hover { color: var(--gold-dk); }
.bs-post-card .excerpt { font-size: .9rem; color: var(--muted); line-height: 1.6; margin: 0 0 16px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.bs-post-card .meta { font-size: .75rem; color: var(--light); margin-bottom: 14px; }
.bs-post-card .more { margin-top: auto; font-size: .75rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--navy); border-bottom: 2px solid var(--gold); padding-bottom: 2px; align-self: flex-start; }
.bs-post-card .more:hover { color: var(--gold-dk); }
.bs-pagination { display: flex; justify-content: center; align-items: center; gap: 8px; padding: 48px 0 0; flex-wrap: wrap; }
.bs-pagination .page-numbers { width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center; border: 1.5px solid var(--line); border-radius: 8px; font-size: .85rem; font-weight: 700; color: var(--navy); transition: all .15s; }
.bs-pagination .page-numbers.current, .bs-pagination .page-numbers:hover { background: var(--navy); border-color: var(--navy); color: #fff; }
.bs-pagination .page-numbers.next, .bs-pagination .page-numbers.prev { width: auto; padding: 0 14px; font-size: .75rem; letter-spacing: .08em; }

/* ── Single post wrapper ── */
.bs-single { padding: 24px 0 64px; }

/* ============================================================
   Plugin branding (carried over) — Complianz, WP Job Openings,
   AddToAny, Fluent Forms, MetaSlider overflow guards
   ============================================================ */

/* Complianz UI suppressed — custom banner handled in cookie-banner.* */
#cmplz-cookiebanner-container, .cmplz-cookiebanner, .cmplz-cookiebanner-wrapper, .cmplz-revoke, .cmplz-manage-consent, #cmplz-manage-consent { display: none !important; }

/* WP Job Openings */
.awsm-job-listings { padding: 0 !important; margin: 0 !important; }
.awsm-job-item { background: #fff !important; border: 1px solid var(--line) !important; border-top: 3px solid var(--navy) !important; border-radius: var(--radius) !important; padding: 24px 28px !important; margin-bottom: 20px !important; transition: box-shadow .2s, transform .2s !important; }
.awsm-job-item:hover { box-shadow: var(--shadow) !important; transform: translateY(-2px) !important; }
.awsm-job-post-title, .awsm-job-post-title a { font-family: var(--sans) !important; font-weight: 700 !important; font-size: 1.15rem !important; color: var(--navy) !important; }
.awsm-job-post-title a:hover { color: var(--gold-dk) !important; }
.awsm-job-specification-item { display: inline-block !important; background: var(--navy) !important; color: #fff !important; font-family: var(--mono) !important; font-size: .62rem !important; font-weight: 700 !important; letter-spacing: .08em !important; text-transform: uppercase !important; padding: 3px 10px !important; border-radius: 20px !important; margin: 4px 4px 0 0 !important; }
.awsm-job-more { display: inline-block !important; background: var(--navy) !important; color: #fff !important; font-family: var(--sans) !important; font-weight: 800 !important; font-size: .72rem !important; letter-spacing: .08em !important; text-transform: uppercase !important; padding: 10px 22px !important; border-radius: var(--r-pill) !important; margin-top: 16px !important; border: 1.5px solid var(--navy) !important; transition: background .2s, color .2s !important; }
.awsm-job-more:hover { background: transparent !important; color: var(--navy) !important; }
.awsm-job-form-field input, .awsm-job-form-field select, .awsm-job-form-field textarea { width: 100% !important; padding: 12px 16px !important; border: 1px solid var(--line) !important; border-radius: var(--r-sm) !important; font-family: var(--sans) !important; font-size: .9rem !important; color: var(--text) !important; background: #fff !important; outline: none !important; transition: border-color .2s !important; }
.awsm-job-form-field input:focus, .awsm-job-form-field select:focus, .awsm-job-form-field textarea:focus { border-color: var(--navy) !important; }
.awsm-application-submit-btn { background: var(--gold) !important; color: var(--navy) !important; font-family: var(--sans) !important; font-weight: 800 !important; font-size: .72rem !important; letter-spacing: .08em !important; text-transform: uppercase !important; padding: 12px 28px !important; border: none !important; border-radius: var(--r-pill) !important; cursor: pointer !important; transition: background .2s !important; }
.awsm-application-submit-btn:hover { background: #e8920a !important; }

/* AddToAny */
.addtoany_share_save_container { border-top: 1px solid var(--line) !important; padding-top: 20px !important; margin-top: 32px !important; }
.a2a_kit a { border-radius: var(--r-sm) !important; }

/* Fluent Forms */
.fluentform .ff-el-group { margin-bottom: 18px; }
.fluentform .ff-el-input--label label { display: block; font-family: var(--mono); font-size: .62rem; font-weight: 700; color: var(--muted); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 6px; }
.fluentform .ff-el-input--label .ff_el_is_required::after { color: var(--gold-dk); }
.fluentform .ff-el-form-control { width: 100%; padding: 13px 16px; border: 1px solid var(--line); border-radius: var(--r-sm); font-family: var(--sans); font-size: .9rem; color: var(--text); background: #fff; transition: border-color .2s, box-shadow .2s; outline: none; box-sizing: border-box; -webkit-appearance: none; }
.fluentform .ff-el-form-control:focus { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(3,13,78,.12); }
.fluentform textarea.ff-el-form-control { resize: vertical; min-height: 120px; }
.fluentform .ff-name-field-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fluentform .ff-btn-submit { width: 100%; background: var(--navy); color: #fff; font-family: var(--sans); font-weight: 700; font-size: .85rem; letter-spacing: .1em; text-transform: uppercase; padding: 15px 28px; border: none; border-radius: var(--r-pill); cursor: pointer; transition: background .2s; display: block; }
.fluentform .ff-btn-submit:hover, .fluentform .ff-btn-submit:focus { background: var(--navy-2); }
.fluentform .ff-el-is-error .ff-el-form-control { border-color: #ef4444; }
.fluentform .error.text-danger { font-size: .78rem; color: #ef4444; margin-top: 4px; display: block; }
.fluentform .ff-message-success { padding: 20px 24px; background: #f0fdf4; border: 1px solid #86efac; border-left: 4px solid var(--green); border-radius: 0 6px 6px 0; }

/* MetaSlider — always contained (mobile overflow guard) */
.metaslider, .metaslider-container, .flexslider, .flex-viewport,
.brandshyp-slider, .brandshyp-slider .ms-wrap, .brandshyp-slider .metaslider,
.brandshyp-slider .flexslider, .brandshyp-slider .flex-viewport {
  max-width: 100% !important; width: 100% !important; overflow: hidden !important; box-sizing: border-box !important;
}
.metaslider img, .flexslider img { max-width: 100% !important; height: auto !important; object-fit: contain !important; }
.flexslider .slides > li { overflow: hidden !important; max-width: 100% !important; }
.brandshyp-slider { position: relative !important; }

/* ── WCAG AA contrast: restore brand gold where it passes (gold on navy ~8:1) ── */
.kicker { color: var(--gold-dk); }
.page-header .gold-text, .section-navy .gold-text, .section-dark .gold-text,
.card-navy .gold-text, .cta-banner .gold-text, .cta .gold-text, .creds .gold-text { color: var(--gold); }
.page-header .kicker, .section-navy .kicker, .section-dark .kicker,
.card-navy .kicker, .cta-banner .kicker, .cta .kicker, .creds .kicker, .sec-posture .kicker { color: var(--gold); }

/* ============================================================
   Section motifs & shapes — applied site-wide via base classes.
   Light/dark surfaces get a faint blueprint grid + soft glow;
   CTAs get a bold ring accent. Content stays above via z-index
   on direct children. No HTML changes needed per page.
   ============================================================ */
.section, .page-header, .section-light, .section-dark, .section-navy,
.home-sec, .hero, .creds, .cta, .cta-banner, .cl-page-hero, #booking { position: relative; }
.section > *, .page-header > *, .section-light > *, .section-dark > *, .section-navy > *,
.home-sec > *, .hero > *, .creds > *, .cta > *, .cta-banner > *, .cl-page-hero > *, #booking > * { position: relative; z-index: 1; }

/* faint blueprint grid — light surfaces */
.page-header::before, .section-light::before, .home-sec.soft::before {
  content:""; position:absolute; inset:0; z-index:0; pointer-events:none;
  background-image:
    linear-gradient(to right, rgba(3,13,78,.045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(3,13,78,.045) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(125% 125% at 85% 0%, #000 0%, transparent 72%);
          mask-image: radial-gradient(125% 125% at 85% 0%, #000 0%, transparent 72%);
}
/* node-network cluster variants — rotate down the page; dark surfaces forced dark */
section:nth-of-type(3n+1){--net:url("data:image/svg+xml,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20width%3D'560'%20height%3D'440'%20viewBox%3D'0%200%20560%20440'%20fill%3D'none'%3E%3Cg%20stroke%3D'rgba%283%2C13%2C78%2C0.22%29'%20stroke-width%3D'1.6'%3E%3Cpath%20d%3D'M353%2C177%20L317%2C143%20M353%2C177%20L339%2C235%20M193%2C180%20L182%2C113%20M193%2C180%20L259%2C100%20M428%2C293%20L335%2C332%20M428%2C293%20L339%2C235%20M335%2C332%20L252%2C367%20M335%2C332%20L339%2C235%20M431%2C73%20L345%2C45%20M431%2C73%20L353%2C177%20M345%2C45%20L431%2C73%20M345%2C45%20L317%2C143%20M252%2C367%20L335%2C332%20M252%2C367%20L339%2C235%20M317%2C143%20L353%2C177%20M317%2C143%20L259%2C100%20M339%2C235%20L353%2C177%20M339%2C235%20L317%2C143%20M182%2C113%20L193%2C180%20M182%2C113%20L259%2C100%20M259%2C100%20L317%2C143%20M259%2C100%20L182%2C113'%2F%3E%3C%2Fg%3E%3Cg%20fill%3D'rgba%283%2C13%2C78%2C0.6%29'%3E%3Ccircle%20cx%3D'353'%20cy%3D'177'%20r%3D'7'%2F%3E%3Ccircle%20cx%3D'428'%20cy%3D'293'%20r%3D'5'%2F%3E%3Ccircle%20cx%3D'335'%20cy%3D'332'%20r%3D'6'%2F%3E%3Ccircle%20cx%3D'431'%20cy%3D'73'%20r%3D'7'%2F%3E%3Ccircle%20cx%3D'252'%20cy%3D'367'%20r%3D'7'%2F%3E%3Ccircle%20cx%3D'317'%20cy%3D'143'%20r%3D'7'%2F%3E%3Ccircle%20cx%3D'339'%20cy%3D'235'%20r%3D'7'%2F%3E%3Ccircle%20cx%3D'259'%20cy%3D'100'%20r%3D'5'%2F%3E%3C%2Fg%3E%3Cg%20fill%3D'%23f8a01c'%3E%3Ccircle%20cx%3D'193'%20cy%3D'180'%20r%3D'9'%2F%3E%3Ccircle%20cx%3D'345'%20cy%3D'45'%20r%3D'10'%2F%3E%3Ccircle%20cx%3D'182'%20cy%3D'113'%20r%3D'9'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");}
section:nth-of-type(3n+2){--net:url("data:image/svg+xml,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20width%3D'560'%20height%3D'440'%20viewBox%3D'0%200%20560%20440'%20fill%3D'none'%3E%3Cg%20stroke%3D'rgba%283%2C13%2C78%2C0.22%29'%20stroke-width%3D'1.6'%3E%3Cpath%20d%3D'M46%2C370%20L96%2C341%20M46%2C370%20L180%2C297%20M180%2C297%20L96%2C341%20M180%2C297%20L114%2C222%20M425%2C227%20L418%2C195%20M425%2C227%20L347%2C187%20M253%2C40%20L396%2C124%20M253%2C40%20L347%2C187%20M347%2C187%20L418%2C195%20M347%2C187%20L396%2C124%20M114%2C222%20L73%2C141%20M114%2C222%20L180%2C297%20M516%2C210%20L425%2C227%20M516%2C210%20L418%2C195%20M96%2C341%20L46%2C370%20M96%2C341%20L180%2C297%20M424%2C82%20L396%2C124%20M424%2C82%20L418%2C195%20M73%2C141%20L114%2C222%20M73%2C141%20L180%2C297%20M418%2C195%20L425%2C227%20M418%2C195%20L347%2C187%20M396%2C124%20L424%2C82%20M396%2C124%20L418%2C195'%2F%3E%3C%2Fg%3E%3Cg%20fill%3D'rgba%283%2C13%2C78%2C0.6%29'%3E%3Ccircle%20cx%3D'46'%20cy%3D'370'%20r%3D'8'%2F%3E%3Ccircle%20cx%3D'425'%20cy%3D'227'%20r%3D'7'%2F%3E%3Ccircle%20cx%3D'253'%20cy%3D'40'%20r%3D'7'%2F%3E%3Ccircle%20cx%3D'347'%20cy%3D'187'%20r%3D'7'%2F%3E%3Ccircle%20cx%3D'516'%20cy%3D'210'%20r%3D'7'%2F%3E%3Ccircle%20cx%3D'96'%20cy%3D'341'%20r%3D'6'%2F%3E%3Ccircle%20cx%3D'424'%20cy%3D'82'%20r%3D'6'%2F%3E%3Ccircle%20cx%3D'418'%20cy%3D'195'%20r%3D'6'%2F%3E%3Ccircle%20cx%3D'396'%20cy%3D'124'%20r%3D'7'%2F%3E%3C%2Fg%3E%3Cg%20fill%3D'%23f8a01c'%3E%3Ccircle%20cx%3D'180'%20cy%3D'297'%20r%3D'8'%2F%3E%3Ccircle%20cx%3D'114'%20cy%3D'222'%20r%3D'8'%2F%3E%3Ccircle%20cx%3D'73'%20cy%3D'141'%20r%3D'9'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");}
section:nth-of-type(3n){--net:url("data:image/svg+xml,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20width%3D'560'%20height%3D'440'%20viewBox%3D'0%200%20560%20440'%20fill%3D'none'%3E%3Cg%20stroke%3D'rgba%283%2C13%2C78%2C0.22%29'%20stroke-width%3D'1.6'%3E%3Cpath%20d%3D'M206%2C188%20L258%2C154%20M206%2C188%20L163%2C111%20M163%2C111%20L162%2C88%20M163%2C111%20L134%2C97%20M104%2C57%20L134%2C97%20M104%2C57%20L162%2C88%20M329%2C304%20L311%2C320%20M329%2C304%20L297%2C186%20M297%2C186%20L258%2C154%20M297%2C186%20L206%2C188%20M258%2C154%20L297%2C186%20M258%2C154%20L206%2C188%20M311%2C320%20L329%2C304%20M311%2C320%20L297%2C186%20M162%2C88%20L163%2C111%20M162%2C88%20L134%2C97%20M134%2C97%20L162%2C88%20M134%2C97%20L163%2C111%20M179%2C379%20L311%2C320%20M179%2C379%20L329%2C304'%2F%3E%3C%2Fg%3E%3Cg%20fill%3D'rgba%283%2C13%2C78%2C0.6%29'%3E%3Ccircle%20cx%3D'206'%20cy%3D'188'%20r%3D'8'%2F%3E%3Ccircle%20cx%3D'104'%20cy%3D'57'%20r%3D'6'%2F%3E%3Ccircle%20cx%3D'329'%20cy%3D'304'%20r%3D'8'%2F%3E%3Ccircle%20cx%3D'297'%20cy%3D'186'%20r%3D'5'%2F%3E%3Ccircle%20cx%3D'311'%20cy%3D'320'%20r%3D'6'%2F%3E%3Ccircle%20cx%3D'162'%20cy%3D'88'%20r%3D'6'%2F%3E%3Ccircle%20cx%3D'134'%20cy%3D'97'%20r%3D'6'%2F%3E%3C%2Fg%3E%3Cg%20fill%3D'%23f8a01c'%3E%3Ccircle%20cx%3D'163'%20cy%3D'111'%20r%3D'8'%2F%3E%3Ccircle%20cx%3D'258'%20cy%3D'154'%20r%3D'10'%2F%3E%3Ccircle%20cx%3D'179'%20cy%3D'379'%20r%3D'9'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");}
.hero{--net:url("data:image/svg+xml,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20width%3D'560'%20height%3D'440'%20viewBox%3D'0%200%20560%20440'%20fill%3D'none'%3E%3Cg%20stroke%3D'rgba%283%2C13%2C78%2C0.22%29'%20stroke-width%3D'1.6'%3E%3Cpath%20d%3D'M353%2C177%20L317%2C143%20M353%2C177%20L339%2C235%20M193%2C180%20L182%2C113%20M193%2C180%20L259%2C100%20M428%2C293%20L335%2C332%20M428%2C293%20L339%2C235%20M335%2C332%20L252%2C367%20M335%2C332%20L339%2C235%20M431%2C73%20L345%2C45%20M431%2C73%20L353%2C177%20M345%2C45%20L431%2C73%20M345%2C45%20L317%2C143%20M252%2C367%20L335%2C332%20M252%2C367%20L339%2C235%20M317%2C143%20L353%2C177%20M317%2C143%20L259%2C100%20M339%2C235%20L353%2C177%20M339%2C235%20L317%2C143%20M182%2C113%20L193%2C180%20M182%2C113%20L259%2C100%20M259%2C100%20L317%2C143%20M259%2C100%20L182%2C113'%2F%3E%3C%2Fg%3E%3Cg%20fill%3D'rgba%283%2C13%2C78%2C0.6%29'%3E%3Ccircle%20cx%3D'353'%20cy%3D'177'%20r%3D'7'%2F%3E%3Ccircle%20cx%3D'428'%20cy%3D'293'%20r%3D'5'%2F%3E%3Ccircle%20cx%3D'335'%20cy%3D'332'%20r%3D'6'%2F%3E%3Ccircle%20cx%3D'431'%20cy%3D'73'%20r%3D'7'%2F%3E%3Ccircle%20cx%3D'252'%20cy%3D'367'%20r%3D'7'%2F%3E%3Ccircle%20cx%3D'317'%20cy%3D'143'%20r%3D'7'%2F%3E%3Ccircle%20cx%3D'339'%20cy%3D'235'%20r%3D'7'%2F%3E%3Ccircle%20cx%3D'259'%20cy%3D'100'%20r%3D'5'%2F%3E%3C%2Fg%3E%3Cg%20fill%3D'%23f8a01c'%3E%3Ccircle%20cx%3D'193'%20cy%3D'180'%20r%3D'9'%2F%3E%3Ccircle%20cx%3D'345'%20cy%3D'45'%20r%3D'10'%2F%3E%3Ccircle%20cx%3D'182'%20cy%3D'113'%20r%3D'9'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");}
.section-dark,.section-navy,.cl-page-hero,#booking{--net:url("data:image/svg+xml,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20width%3D'560'%20height%3D'440'%20viewBox%3D'0%200%20560%20440'%20fill%3D'none'%3E%3Cg%20stroke%3D'rgba%28255%2C255%2C255%2C0.24%29'%20stroke-width%3D'1.6'%3E%3Cpath%20d%3D'M46%2C370%20L96%2C341%20M46%2C370%20L180%2C297%20M180%2C297%20L96%2C341%20M180%2C297%20L114%2C222%20M425%2C227%20L418%2C195%20M425%2C227%20L347%2C187%20M253%2C40%20L396%2C124%20M253%2C40%20L347%2C187%20M347%2C187%20L418%2C195%20M347%2C187%20L396%2C124%20M114%2C222%20L73%2C141%20M114%2C222%20L180%2C297%20M516%2C210%20L425%2C227%20M516%2C210%20L418%2C195%20M96%2C341%20L46%2C370%20M96%2C341%20L180%2C297%20M424%2C82%20L396%2C124%20M424%2C82%20L418%2C195%20M73%2C141%20L114%2C222%20M73%2C141%20L180%2C297%20M418%2C195%20L425%2C227%20M418%2C195%20L347%2C187%20M396%2C124%20L424%2C82%20M396%2C124%20L418%2C195'%2F%3E%3C%2Fg%3E%3Cg%20fill%3D'rgba%28255%2C255%2C255%2C0.7%29'%3E%3Ccircle%20cx%3D'46'%20cy%3D'370'%20r%3D'8'%2F%3E%3Ccircle%20cx%3D'425'%20cy%3D'227'%20r%3D'7'%2F%3E%3Ccircle%20cx%3D'253'%20cy%3D'40'%20r%3D'7'%2F%3E%3Ccircle%20cx%3D'347'%20cy%3D'187'%20r%3D'7'%2F%3E%3Ccircle%20cx%3D'516'%20cy%3D'210'%20r%3D'7'%2F%3E%3Ccircle%20cx%3D'96'%20cy%3D'341'%20r%3D'6'%2F%3E%3Ccircle%20cx%3D'424'%20cy%3D'82'%20r%3D'6'%2F%3E%3Ccircle%20cx%3D'418'%20cy%3D'195'%20r%3D'6'%2F%3E%3Ccircle%20cx%3D'396'%20cy%3D'124'%20r%3D'7'%2F%3E%3C%2Fg%3E%3Cg%20fill%3D'%23f8a01c'%3E%3Ccircle%20cx%3D'180'%20cy%3D'297'%20r%3D'8'%2F%3E%3Ccircle%20cx%3D'114'%20cy%3D'222'%20r%3D'8'%2F%3E%3Ccircle%20cx%3D'73'%20cy%3D'141'%20r%3D'9'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E")!important;}
.creds{--net:url("data:image/svg+xml,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20width%3D'560'%20height%3D'440'%20viewBox%3D'0%200%20560%20440'%20fill%3D'none'%3E%3Cg%20stroke%3D'rgba%28255%2C255%2C255%2C0.24%29'%20stroke-width%3D'1.6'%3E%3Cpath%20d%3D'M206%2C188%20L258%2C154%20M206%2C188%20L163%2C111%20M163%2C111%20L162%2C88%20M163%2C111%20L134%2C97%20M104%2C57%20L134%2C97%20M104%2C57%20L162%2C88%20M329%2C304%20L311%2C320%20M329%2C304%20L297%2C186%20M297%2C186%20L258%2C154%20M297%2C186%20L206%2C188%20M258%2C154%20L297%2C186%20M258%2C154%20L206%2C188%20M311%2C320%20L329%2C304%20M311%2C320%20L297%2C186%20M162%2C88%20L163%2C111%20M162%2C88%20L134%2C97%20M134%2C97%20L162%2C88%20M134%2C97%20L163%2C111%20M179%2C379%20L311%2C320%20M179%2C379%20L329%2C304'%2F%3E%3C%2Fg%3E%3Cg%20fill%3D'rgba%28255%2C255%2C255%2C0.7%29'%3E%3Ccircle%20cx%3D'206'%20cy%3D'188'%20r%3D'8'%2F%3E%3Ccircle%20cx%3D'104'%20cy%3D'57'%20r%3D'6'%2F%3E%3Ccircle%20cx%3D'329'%20cy%3D'304'%20r%3D'8'%2F%3E%3Ccircle%20cx%3D'297'%20cy%3D'186'%20r%3D'5'%2F%3E%3Ccircle%20cx%3D'311'%20cy%3D'320'%20r%3D'6'%2F%3E%3Ccircle%20cx%3D'162'%20cy%3D'88'%20r%3D'6'%2F%3E%3Ccircle%20cx%3D'134'%20cy%3D'97'%20r%3D'6'%2F%3E%3C%2Fg%3E%3Cg%20fill%3D'%23f8a01c'%3E%3Ccircle%20cx%3D'163'%20cy%3D'111'%20r%3D'8'%2F%3E%3Ccircle%20cx%3D'258'%20cy%3D'154'%20r%3D'10'%2F%3E%3Ccircle%20cx%3D'179'%20cy%3D'379'%20r%3D'9'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E")!important;}

/* node-network graphic + soft glow — light surfaces */
.section::after, .section-light::after, .home-sec::after, .hero::after {
  content:""; position:absolute; top:0; bottom:0; left:50%; transform:translateX(-50%);
  width:100%; max-width:var(--maxw); z-index:0; pointer-events:none;
  background:
    var(--net) top right / clamp(320px, 44%, 560px) auto no-repeat,
    radial-gradient(520px 360px at 100% 0%, rgba(248,160,28,.08), transparent 60%);
  -webkit-mask-image: radial-gradient(80% 82% at 100% 2%, #000 32%, transparent 74%);
          mask-image: radial-gradient(80% 82% at 100% 2%, #000 32%, transparent 74%);
}

/* dark surfaces — white grid + gold glow */
.section-dark::before, .section-navy::before, .creds::before, .cl-page-hero::before, #booking::before {
  content:""; position:absolute; inset:0; z-index:0; pointer-events:none;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(125% 125% at 85% 0%, #000 0%, transparent 72%);
          mask-image: radial-gradient(125% 125% at 85% 0%, #000 0%, transparent 72%);
}
.section-dark::after, .section-navy::after, .creds::after, .cl-page-hero::after, #booking::after {
  content:""; position:absolute; top:0; bottom:0; left:50%; transform:translateX(-50%);
  width:100%; max-width:var(--maxw); z-index:0; pointer-events:none;
  background:
    var(--net) top right / clamp(320px, 44%, 560px) auto no-repeat,
    radial-gradient(560px 380px at 100% 0%, rgba(248,160,28,.12), transparent 60%);
  -webkit-mask-image: radial-gradient(80% 82% at 100% 2%, #000 32%, transparent 74%);
          mask-image: radial-gradient(80% 82% at 100% 2%, #000 32%, transparent 74%);
}

/* CTAs — bold concentric ring accent (navy/white outer + gold inner) */
.cta, .cta-banner { overflow: hidden; }
.cta::after, .cta-banner::after {
  content:""; position:absolute; z-index:0; pointer-events:none;
  width: 520px; height: 520px; right: -150px; top: -170px; border-radius:50%;
  background:
    radial-gradient(circle, transparent 61%, rgba(255,255,255,.07) 61.4%, rgba(255,255,255,.07) 62.6%, transparent 63%),
    radial-gradient(circle, transparent 42%, rgba(248,160,28,.20) 42.4%, rgba(248,160,28,.20) 44%, transparent 44.4%);
}

/* Mobile: keep the node-network but as a fixed-height band (100% width would
   shrink it to a sliver) and slightly faded so it stays behind the text. */
@media (max-width: 900px) {
  .section::after, .section-light::after, .home-sec::after, .hero::after,
  .section-dark::after, .section-navy::after, .creds::after, .cl-page-hero::after, #booking::after {
    background-size: auto 120px; background-position: top right; opacity: .72;
  }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; padding: 64px 0 60px; }
  .hero-panel { order: 2; }
  .dual { grid-template-columns: 1fr; }
  .cards3, .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
  .bs-post-grid { grid-template-columns: 1fr 1fr; }
  .proof { grid-template-columns: 1fr 1fr; }
  .proof .item:nth-child(2) { border-right: none; }
  .proof .item:nth-child(1), .proof .item:nth-child(2) { border-bottom: 1px solid var(--line); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .sec-posture-grid { grid-template-columns: 1fr; column-gap: 0; }
  .faq-layout { grid-template-columns: 1fr; gap: 36px; }
}
/* ── Collapse nav to hamburger before the inline row (8 items + 2 dropdowns + CTA) overflows ── */
@media (max-width: 1150px) {
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; align-items: stretch; position: fixed; top: 74px; left: 0; right: 0; bottom: 0; min-height: calc(100vh - 74px); min-height: calc(100dvh - 74px); overflow-y: auto; background: #fff; border-bottom: 2px solid var(--line); padding: 8px 0 16px; gap: 0; z-index: 99; box-shadow: var(--shadow); }
  .nav-links.open > a { padding: 14px 6%; border-bottom: 1px solid var(--line); font-size: .95rem; }
  .nav-links.open > a:not(.nav-cta-mobile):last-of-type { border-bottom: none; }
  /* Primary CTA inside the open mobile menu (header-bar CTA is hidden on mobile) */
  .nav-links.open .nav-cta-mobile { display: inline-flex; justify-content: center; margin: 16px 6% 4px; border-bottom: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nav-dropdown { width: 100%; border-top: 1px solid var(--line); }
  .nav-dropdown-toggle { width: 100%; justify-content: space-between; padding: 13px 6%; font-size: .95rem; }
  .nav-dropdown-menu { position: static; padding-top: 0; }
  /* ⚠️ The viewport cap is DESKTOP-ONLY and must be undone here. Below 1150px the menu is
     position:static and sits in the page flow inside the open hamburger panel, so capping its
     height would trap the tool list in a second nested scroller inside a page that already
     scrolls. The panel is what scrolls on mobile. */
  .nav-dropdown-menu-inner { border: none; border-left: 3px solid var(--gold); border-radius: 0; box-shadow: none; margin: 0 6% 4px; animation: none; background: var(--bg); max-height: none; overflow: visible; }
  .nav-dropdown-menu-inner.cols { min-width: 0; }
  .ndm-cols { grid-template-columns: 1fr; }
  /* Stacked, the tint would read as a random band across the menu. */
  .ndm-col-sa { background: transparent; }
  .ndm-col + .ndm-col { border-left: none; border-top: 1px solid var(--line); }
  .ndm-col + .ndm-col { border-left: none; border-top: 1px solid var(--line); }
}
@media (max-width: 900px) {
  .grid-2 { grid-template-columns: 1fr !important; gap: 32px !important; }
  .cta-banner { flex-direction: column; align-items: flex-start; padding: 50px 6%; }
  .section, .home-sec { padding: 64px 5%; }
  .section-sm { padding: 40px 5%; }
}
@media (max-width: 680px) {
  body { font-size: 16px; }
  .ribbon .wrap { justify-content: center; text-align: center; }
  .cards3, .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr !important; gap: 16px !important; }
  .bs-post-grid { grid-template-columns: 1fr !important; gap: 18px !important; }
  .proof { grid-template-columns: 1fr 1fr; }
  /* Press bar: tidy even 3-across grid instead of ragged flex-wrap */
  .press { padding: 22px 0; }
  .press-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px 12px; justify-items: center; align-items: center; }
  .press-row img { height: 28px; opacity: .6; }
  .hero h1 { font-size: clamp(1.9rem, 8vw, 2.6rem); }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .section, .home-sec { padding: 56px 5%; }
  .cta { padding: 48px 24px; border-radius: 18px; }
  .creds .wrap { padding: 32px 22px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .naics-row { flex-direction: column; align-items: flex-start; gap: 2px; }
  .cert-bar { flex-direction: column; gap: 8px; align-items: flex-start; }
  .ent-verify-grid, .psb-grid-2x2 { grid-template-columns: 1fr; }
  .stats-row { gap: 24px; }
}

/* ── News feed cards ([bs_news_feed]) ─────────────────────────────────────────
   Moved here from the mu-plugin's inline <style> because LiteSpeed's CSS
   optimizer strips inline <style> blocks emitted inside shortcode output and
   does NOT merge them into the combined stylesheet (verified 2026-07-01 — the
   feed rendered as unstyled stacked text). Living in the theme sheet keeps them
   in the combined CSS and immune to the optimizer. */
.bs-news-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
.bs-news-grid--compact { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; }
.bs-news-card { background: #fff; border: 1px solid var(--border, #e6e9f0); border-top: 3px solid var(--gold, #f8a01c); border-radius: 10px; padding: 20px; display: flex; flex-direction: column; gap: 10px; transition: box-shadow .2s ease, transform .2s ease; }
.bs-news-card:hover { box-shadow: 0 12px 30px rgba(3, 13, 78, .10); transform: translateY(-2px); }
.bs-news-grid--compact .bs-news-card { border-top-width: 2px; padding: 16px; gap: 8px; }
.bs-news-meta { display: flex; justify-content: space-between; align-items: center; gap: 10px; font-family: var(--mono, "SF Mono", "Roboto Mono", monospace); font-size: .62rem; letter-spacing: .08em; text-transform: uppercase; }
.bs-news-source { color: var(--gold-dk, #c87000); font-weight: 800; }
.bs-news-date { color: var(--muted, #64748b); white-space: nowrap; }
.bs-news-title { font-size: 1.02rem; font-weight: 700; line-height: 1.3; margin: 0; }
.bs-news-grid--compact .bs-news-title { font-size: .95rem; }
.bs-news-title a { color: var(--navy, #030d4e); text-decoration: none; }
.bs-news-title a:hover { color: var(--gold-dk, #c87000); }
.bs-news-desc { color: var(--text, #334155); font-size: .9rem; line-height: 1.5; margin: 0; }
.bs-news-empty { color: var(--muted, #64748b); font-style: italic; }
