:root {
  --navy: #0b1f33;
  --navy-2: #102a43;
  --slate: #1f2933;
  --charcoal: #111827;
  --muted: #5b6675;
  --line: #d9e2ec;
  --white: #ffffff;
  --off-white: #f8fafc;
  --gold: #c49a3a;
  --gold-dark: #9d7625;
  --shadow: 0 18px 45px rgba(17, 24, 39, 0.12);
  --radius: 18px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}
a { color: inherit; }
img { max-width: 100%; height: auto; }
.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--gold);
  color: var(--navy);
  padding: 10px 14px;
  z-index: 9999;
}
.skip-link:focus { left: 12px; top: 12px; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 31, 51, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 82px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  text-decoration: none;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 2px solid var(--gold);
  border-radius: 12px;
  color: var(--gold);
  font-weight: 800;
  letter-spacing: -0.04em;
}
.brand-text { display: grid; line-height: 1.15; }
.brand-text strong { font-size: 1rem; letter-spacing: 0.01em; }
.brand-text em { font-size: 0.77rem; color: #cbd5e1; font-style: normal; }
.nav-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0;
  padding: 0;
}
.nav-menu a {
  display: inline-block;
  color: #e5edf5;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 700;
  padding: 10px 0;
  border-bottom: 2px solid transparent;
}
.nav-menu a:hover,
.nav-menu a:focus { color: var(--white); border-color: var(--gold); outline: none; }
.menu-toggle {
  display: none;
  border: 1px solid rgba(255,255,255,0.22);
  color: var(--white);
  background: transparent;
  border-radius: 999px;
  padding: 9px 14px;
  font-weight: 700;
}
.blueprint-bg {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 15%, rgba(196, 154, 58, 0.22), transparent 32%),
    radial-gradient(circle at 88% 10%, rgba(255, 255, 255, 0.11), transparent 24%),
    linear-gradient(135deg, var(--navy) 0%, var(--slate) 100%);
}
.blueprint-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.17;
  background-image:
    linear-gradient(rgba(255,255,255,.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.16) 1px, transparent 1px),
    linear-gradient(45deg, transparent 47%, rgba(196,154,58,.22) 48%, rgba(196,154,58,.22) 52%, transparent 53%);
  background-size: 42px 42px, 42px 42px, 190px 190px;
  pointer-events: none;
}
.hero,
.page-hero { color: var(--white); }
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.7fr);
  gap: 42px;
  align-items: center;
  padding: 88px 0 78px;
}
.hero-content,
.page-hero .container { position: relative; z-index: 1; }
.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
h1,
h2,
h3 { line-height: 1.12; margin-top: 0; }
h1 { font-size: clamp(2.35rem, 6vw, 4.85rem); letter-spacing: -0.045em; margin-bottom: 22px; }
h2 { font-size: clamp(1.8rem, 3.2vw, 3rem); letter-spacing: -0.035em; margin-bottom: 14px; }
h3 { font-size: 1.22rem; letter-spacing: -0.018em; margin-bottom: 10px; }
p { margin-top: 0; }
.hero-lede,
.page-hero p {
  color: #d8e2ec;
  max-width: 740px;
  font-size: 1.12rem;
}
.hero-actions,
.snapshot-actions,
.download-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  min-width: 190px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.button:hover,
.button:focus { transform: translateY(-1px); outline: none; }
.button-primary { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.button-primary:hover,
.button-primary:focus { background: #d4aa4a; }
.button-secondary { background: transparent; color: var(--navy); border-color: var(--line); }
.button-secondary:hover,
.button-secondary:focus { border-color: var(--gold); }
.button-secondary.dark { color: var(--white); border-color: rgba(255,255,255,0.32); }
.hero-panel {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
}
.panel-label {
  display: inline-block;
  color: var(--gold);
  font-weight: 800;
  margin-bottom: 12px;
  text-transform: none;
  font-size: 0.82rem;
  letter-spacing: 0.07em;
}
.hero-panel p { font-size: 1.32rem; line-height: 1.25; font-weight: 800; color: var(--white); }
.hero-panel ul { margin: 18px 0 0; padding-left: 20px; color: #d8e2ec; }
.page-hero .container { padding: 72px 0; }
.page-hero h1 { max-width: 940px; font-size: clamp(2.15rem, 5vw, 4rem); }

.page-hero-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: start;
}
.page-hero-copy { min-width: 0; }
.page-hero-action {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  padding-top: 12px;
}
.page-hero-action .button { white-space: nowrap; }
.snapshot { margin-top: -34px; position: relative; z-index: 5; }
.snapshot-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px;
}
.snapshot-header {
  display: block;
  max-width: 820px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.snapshot-header h2 { font-size: clamp(1.4rem, 2.6vw, 2.35rem); margin-bottom: 0; }
.snapshot-header .eyebrow { margin-bottom: 8px; }
.snapshot-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 24px 0 0;
}
.snapshot-grid div,
.code-grid div,
.proof-list div,
.quick-data li {
  background: var(--off-white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
}
dt,
.quick-data span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: none;
  letter-spacing: 0.06em;
  margin-bottom: 5px;
}
dd { margin: 0; font-weight: 800; color: var(--navy); }
.snapshot-subtext { display: block; margin-top: 4px; color: var(--muted); font-size: 0.86rem; font-weight: 800; line-height: 1.25; }
dd.texas-vethub .snapshot-subtext { color: var(--muted); }
.section { padding: 84px 0; }
.section-muted { background: var(--off-white); }
.section-heading { max-width: 850px; margin-bottom: 34px; }
.section-heading.narrow { max-width: 760px; margin-left: auto; margin-right: auto; text-align: center; }
.section-heading p { color: var(--muted); font-size: 1.08rem; }
.card-grid { display: grid; gap: 20px; }
.card-grid.one { grid-template-columns: 1fr; }
.card-grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card-grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.service-card,
.mini-card,
.performance-card,
.contact-card,
.post-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 10px 28px rgba(17, 24, 39, 0.06);
}
.service-card { min-height: 230px; display: flex; flex-direction: column; }
.service-card p,
.mini-card p,
.performance-card p { color: var(--muted); }
.service-card a { margin-top: auto; color: var(--navy); font-weight: 800; text-decoration: none; border-bottom: 2px solid var(--gold); width: fit-content; }
.section-action {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}
.snapshot-actions .button,
.hero-actions .button,
.download-actions .button,
.contact-actions .button {
  min-width: 220px;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 52px;
  align-items: center;
}
.align-start { align-items: start; }
.proof-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.proof-list strong { display: block; color: var(--navy); font-size: 2rem; line-height: 1; margin-bottom: 8px; }
.proof-list span { color: var(--muted); font-weight: 700; }
.cta-band { background: var(--navy); color: var(--white); padding: 52px 0; }
.cta-band-inner { display: flex; justify-content: space-between; align-items: center; gap: 30px; }
.cta-band h2 { margin-bottom: 8px; }
.cta-band p:not(.eyebrow) { color: #d8e2ec; max-width: 780px; margin-bottom: 0; }
.site-footer { background: var(--slate); color: #d8e2ec; padding: 54px 0 22px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 0.8fr 0.8fr; gap: 36px; }
.site-footer h2,
.site-footer h3 { color: var(--white); }
.footer-cert { color: var(--gold); font-weight: 800; }
.footer-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.footer-list a { color: #d8e2ec; text-decoration: none; }
.footer-list a:hover,
.footer-list a:focus { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); margin-top: 34px; padding-top: 18px; font-size: 0.9rem; color: #aab7c4; }
.capability-list { display: grid; gap: 24px; }
.capability-block {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: 36px;
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(17, 24, 39, 0.05);
}
.check-list { margin: 18px 0 0; padding: 0; list-style: none; display: grid; gap: 10px; }
.check-list li { position: relative; padding-left: 28px; color: var(--muted); }
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 12px;
  height: 12px;
  background: var(--gold);
  border-radius: 50%;
}
.check-list.large li { font-size: 1.05rem; color: var(--charcoal); }
.tag-list { display: flex; flex-wrap: wrap; gap: 10px; padding: 0; margin: 18px 0 0; list-style: none; }
.tag-list li,
.tag-list span {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--off-white);
  border: 1px solid var(--line);
  color: var(--navy);
  font-weight: 800;
  font-size: 0.92rem;
}
.performance-timeline { display: grid; gap: 22px; }
.performance-card { padding: 32px; }
.metric-strip { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 20px; }
.metric-strip span {
  display: inline-flex;
  background: #fbf4df;
  color: var(--navy);
  border: 1px solid #efd48a;
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 0.82rem;
  font-weight: 800;
}
.subtle { color: var(--muted); font-weight: 800; }
.info-table-wrap { overflow-x: auto; }
.info-table { width: 100%; border-collapse: collapse; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: 0 10px 28px rgba(17, 24, 39, 0.06); }
.info-table th,
.info-table td { padding: 16px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.info-table th { width: 34%; color: var(--navy); background: var(--off-white); }
.info-table tr:last-child th,
.info-table tr:last-child td { border-bottom: 0; }
.code-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.code-grid strong { display: block; color: var(--navy); font-size: 1.1rem; }
.code-grid span { color: var(--muted); }
.download-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: 0 10px 28px rgba(17, 24, 39, 0.06);
}
.contact-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr); gap: 28px; align-items: start; }
.contact-list { list-style: none; margin: 24px 0 0; padding: 0; display: grid; gap: 12px; }
.contact-list li { display: grid; grid-template-columns: 120px 1fr; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.contact-list strong { color: var(--navy); }
.contact-list a { color: var(--charcoal); font-weight: 800; text-decoration: none; }
.dark-card { background: var(--navy); color: var(--white); }
.dark-card .eyebrow { color: var(--gold); }
.dark-card h2 { color: var(--white); }
.quick-data { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.quick-data li { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.14); }
.quick-data span { color: #cbd5e1; }
.quick-data strong { color: var(--white); }
.content-area { max-width: 860px; }
.content-area a { color: var(--navy); font-weight: 800; }
@media (max-width: 1120px) {
  .menu-toggle { display: inline-flex; }
  .primary-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 82px;
    background: var(--navy);
    border-top: 1px solid rgba(255,255,255,0.12);
    display: none;
  }
  .primary-nav.is-open { display: block; }
  .nav-menu { flex-direction: column; align-items: stretch; gap: 0; padding: 12px 20px 18px; }
  .nav-menu a { display: block; padding: 13px 0; }
  .hero-grid,
  .two-col,
  .capability-block,
  .contact-grid { grid-template-columns: 1fr; }
  .snapshot-header { grid-template-columns: 1fr; align-items: start; }
  .card-grid.three,
  .card-grid.four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-band-inner,
  .download-card { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 640px) {
  .container { width: min(100% - 28px, var(--container)); }
  .header-inner { min-height: 74px; }
  .primary-nav { top: 74px; }
  .brand-mark { width: 42px; height: 42px; }
  .brand-text em { display: none; }
  .hero-grid { padding: 62px 0 58px; gap: 28px; }
  .page-hero .container { padding: 54px 0; }
  .section { padding: 58px 0; }
  .snapshot { margin-top: -20px; }
  .snapshot-card,
  .service-card,
  .mini-card,
  .performance-card,
  .contact-card,
  .capability-block,
  .download-card { padding: 22px; }
  .snapshot-grid,
  .card-grid.three,
  .card-grid.four,
  .proof-list,
  .code-grid,
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions,
  .snapshot-actions,
  .download-actions,
  .contact-actions { flex-direction: column; align-items: stretch; }
  .button { width: 100%; }
  .contact-list li { grid-template-columns: 1fr; gap: 4px; }
  .metric-strip span { width: 100%; justify-content: center; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* === FBFS refinements === */
:root {
  --burnt-orange: #bf5700;
}
body { font-size: 17px; }
.texas-vethub { color: var(--burnt-orange); font-weight: 900; }
.eyebrow .texas-vethub { color: #f08a24; }

.brand-emblem {
  width: 58px;
  min-width: 58px;
  height: 58px;
  display: grid;
  grid-template-rows: 1fr 9px 1fr;
  align-items: center;
  justify-items: center;
  border: 2px solid var(--gold);
  border-radius: 14px;
  color: var(--gold);
  background: linear-gradient(145deg, #092035, #0b1f33);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04);
  line-height: 1;
  padding: 6px 5px 5px;
}
.emblem-script {
  font-family: "Lobster Two", "Brush Script MT", "Segoe Script", "Lucida Handwriting", cursive;
  font-size: 1.16rem;
  font-weight: 700;
  letter-spacing: 0.015em;
  transform: translateY(2px);
}
.emblem-solid {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.19rem;
  font-weight: 900;
  letter-spacing: 0.015em;
  transform: translateY(-1px);
}
.emblem-divider {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 10px 1fr;
  align-items: center;
  gap: 4px;
  color: var(--gold);
  opacity: 0.95;
}
.emblem-divider span { height: 1px; background: var(--gold); display: block; }
.emblem-divider i { font-style: normal; font-size: 0.48rem; line-height: 1; }
.footer-brand-row { display: flex; align-items: center; gap: 14px; margin-bottom: 10px; }
.footer-brand-row h2 { margin-bottom: 0; }
.footer-emblem { width: 62px; min-width: 62px; height: 62px; }

.hero-grid { padding: 76px 0 64px; }
.hero-lede,
.page-hero p,
.section-heading p,
.cta-band p:not(.eyebrow),
.service-card p,
.mini-card p,
.performance-card p,
.contact-card p,
.capability-block p,
.check-list li,
.code-grid span,
.proof-list span,
.info-table th,
.info-table td,
.footer-list,
.site-footer p { font-size: 1.03rem; }
.snapshot-grid div { padding: 18px; }
dt, .quick-data span { font-size: 0.82rem; }
dd { font-size: 1.01rem; }
.section.compact { padding: 68px 0; }
.compact-card { min-height: 220px; }

.button-text {
  background: transparent;
  color: var(--navy);
  border-color: transparent;
  text-decoration: underline;
  text-underline-offset: 5px;
  padding-left: 8px;
  padding-right: 8px;
}
.button-text.dark { color: var(--white); }
.button-text:hover,
.button-text:focus { border-color: transparent; color: var(--gold); }

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}
.audience-grid li {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px;
  color: var(--navy);
  font-weight: 900;
  text-align: center;
}

.why-section { padding: 94px 0; }
.emphasis-grid { gap: 24px; }
.emphasis-card {
  padding: 34px;
  border-top: 5px solid var(--gold);
  min-height: 250px;
}
.emphasis-card h3 { font-size: 1.36rem; }
.emphasis-card p { font-size: 1.05rem; }

.note-card {
  margin-top: 26px;
  padding: 22px;
  border-left: 5px solid var(--gold);
  background: var(--off-white);
  border-radius: 12px;
}
.note-card strong { display: block; color: var(--navy); font-size: 1.1rem; margin-bottom: 6px; }
.note-card p { margin-bottom: 0; color: var(--muted); }

.footer-list a { font-weight: 800; }

@media (max-width: 980px) {
  .audience-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-grid { padding: 64px 0 56px; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .brand-emblem { width: 48px; min-width: 48px; height: 48px; border-radius: 12px; }
  .emblem-script { font-size: 0.95rem; }
  .emblem-solid { font-size: 1rem; }
  .brand-text strong { font-size: 0.92rem; }
  .snapshot-grid,
  .audience-grid { grid-template-columns: 1fr; }
  .why-section { padding: 64px 0; }
  .emphasis-card { min-height: unset; }
}
.brand-emblem-img {
  display: block;
  width: 58px;
  min-width: 58px;
  height: 58px;
  object-fit: contain;
}
.footer-emblem.brand-emblem-img { width: 62px; min-width: 62px; height: 62px; }
@media (max-width: 640px) {
  .brand-emblem-img { width: 48px; min-width: 48px; height: 48px; }
}


/* === FBFS final polish === */
.service-card.compact-card { min-height: 210px; }
.service-card.compact-card p { margin-bottom: 0; }
.snapshot-actions .button-secondary,
.hero-actions .button-secondary,
.download-actions .button-secondary,
.contact-actions .button-secondary {
  text-align: center;
}
@media (max-width: 640px) {
  .button { min-width: 0; }
  .section-action { align-items: stretch; }
  .section-action .button { width: 100%; }
}


/* === FBFS release refinements === */
.eyebrow,
.panel-label,
dt,
.quick-data span {
  text-transform: none;
}
.brand-emblem-img {
  width: 74px;
  min-width: 74px;
  height: 74px;
}
.header-inner {
  min-height: 96px;
}
.footer-emblem.brand-emblem-img {
  width: 88px;
  min-width: 88px;
  height: 88px;
}
.hero-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(430px, 0.92fr);
  gap: 56px;
  align-items: center;
}
.hero-panel {
  padding: 42px 44px;
  border-left: 8px solid var(--gold);
  background: rgba(8, 25, 42, 0.72);
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow: 0 28px 60px rgba(0,0,0,0.28);
}
.hero-panel .panel-label {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.9rem;
  color: var(--gold);
}
.hero-panel p.hero-panel-headline {
  font-size: clamp(1.65rem, 2.2vw, 2.35rem);
  line-height: 1.08;
  margin-bottom: 12px;
  color: var(--white);
}
.hero-panel p.hero-panel-copy {
  font-size: 1.06rem;
  line-height: 1.5;
  font-weight: 700;
  color: #d8e2ec;
  margin-bottom: 18px;
}
.hero-panel ul {
  font-size: 1.04rem;
}
.snapshot-actions .button,
.hero-actions .button,
.download-actions .button,
.contact-actions .button {
  min-width: 240px;
  min-height: 54px;
}
.button-secondary {
  background: var(--white);
}
.blueprint-bg .button-secondary,
.button-secondary.dark {
  background: transparent;
}
.audience-grid li {
  font-size: 1.05rem;
}
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-panel { max-width: 720px; }
  .header-inner { min-height: 88px; }
}
@media (max-width: 640px) {
  .brand-emblem-img { width: 56px; min-width: 56px; height: 56px; }
  .footer-emblem.brand-emblem-img { width: 64px; min-width: 64px; height: 64px; }
  .header-inner { min-height: 78px; }
  .primary-nav { top: 78px; }
  .hero-panel { padding: 28px 24px; border-left-width: 5px; }
  .snapshot-actions .button, .hero-actions .button, .download-actions .button, .contact-actions .button { min-width: 0; }
}


/* === Snapshot, Footer, and Utility === */
.snapshot-header { text-align: left; }
.snapshot-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.snapshot-actions .button { min-width: 240px; min-height: 54px; border-radius: 999px; font-size: 1rem; font-weight: 800; padding: 14px 22px; }
.snapshot-actions .button-secondary { background: var(--white); color: var(--navy); border-color: var(--line); }
.snapshot-actions .button-secondary:hover,
.snapshot-actions .button-secondary:focus { border-color: var(--gold); }
@media (max-width: 980px) { .snapshot-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 640px) { .snapshot-grid { grid-template-columns: 1fr; } }

.footer-brand-name { font-size: 1rem; font-weight: 700; color: var(--white); margin: 0 0 8px; letter-spacing: 0.01em; }
.footer-brand-name strong { font-weight: 800; }

.note-text { margin-top: 16px; color: var(--muted); font-size: 0.95rem; }
.snapshot-note { margin: 18px 0 0; color: var(--muted); font-weight: 800; font-size: 0.95rem; }

/* === FBFS V9.4 Snapshot and Above-the-Fold Refinements === */
:root {
  --federal-red: #b22234;
  --federal-blue: #0b3a75;
}

body {
  padding-top: 96px;
}

.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) {
  .admin-bar .site-header { top: 46px; }
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
}

h1 {
  font-size: clamp(2.15rem, 4.15vw, 3.75rem);
  margin-bottom: 16px;
}

.hero-grid {
  padding: 46px 0 44px;
  gap: 42px;
  grid-template-columns: minmax(0, 1.12fr) minmax(390px, 0.88fr);
}

.hero-lede {
  max-width: 720px;
  font-size: clamp(1.02rem, 1.35vw, 1.16rem);
  line-height: 1.48;
}

.hero-panel {
  padding: 34px 36px;
}

.hero-panel p.hero-panel-headline {
  font-size: clamp(1.42rem, 1.75vw, 1.95rem);
}

.hero-panel p.hero-panel-copy {
  font-size: 1.02rem;
}

.snapshot-grid.snapshot-grid-consolidated {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.snapshot-actions-centered {
  justify-content: center;
  align-items: center;
  text-align: center;
}

.snapshot-actions .button-fed {
  min-width: 240px;
  min-height: 54px;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 900;
  padding: 14px 22px;
  text-align: center;
}

.button-fed-red {
  background: var(--federal-red);
  color: var(--white);
  border-color: var(--federal-red);
}

.button-fed-red:hover,
.button-fed-red:focus {
  background: #981b2b;
  border-color: #981b2b;
}

.button-fed-white {
  background: var(--white);
  color: var(--navy);
  border-color: #b8c7d9;
}

.button-fed-white:hover,
.button-fed-white:focus {
  border-color: var(--federal-blue);
}

.button-fed-blue {
  background: var(--federal-blue);
  color: var(--white);
  border-color: var(--federal-blue);
}

.button-fed-blue:hover,
.button-fed-blue:focus {
  background: #072f62;
  border-color: #072f62;
}

@media (max-width: 980px) {
  body { padding-top: 88px; }
  .hero-grid {
    grid-template-columns: 1fr;
    padding: 42px 0 42px;
  }
  .snapshot-grid.snapshot-grid-consolidated {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  body { padding-top: 78px; }
  h1 { font-size: clamp(2rem, 9vw, 2.65rem); }
  .hero-grid { padding: 34px 0 36px; }
  .snapshot-grid.snapshot-grid-consolidated { grid-template-columns: 1fr; }
  .snapshot-actions .button-fed { width: 100%; min-width: 0; }
}


/* === FBFS V9.7 Capability Page Refinement === */

@media (max-width: 980px) {
  .page-hero-split { grid-template-columns: 1fr; }
  .page-hero-action { justify-content: flex-start; padding-top: 0; }
}
@media (max-width: 640px) {
  .page-hero-action .button { width: 100%; white-space: normal; }
}


/* === FBFS V9.8 procurement and conversion hardening === */
.header-cta,
.mobile-nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--federal-red);
  color: var(--white);
  border: 1px solid var(--federal-red);
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 900;
  white-space: nowrap;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.header-cta:hover,
.header-cta:focus,
.mobile-nav-cta:hover,
.mobile-nav-cta:focus {
  background: #981b2b;
  border-color: #981b2b;
  color: var(--white);
  outline: 2px solid transparent;
  transform: translateY(-1px);
}
.mobile-nav-cta { display: none; margin: 10px 20px 18px; }

.primary-nav { flex: 1 1 auto; }
.header-cta { flex: 0 0 auto; }
.snapshot-subtext a,
.info-table a {
  color: var(--navy);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.snapshot-subtext a:hover,
.snapshot-subtext a:focus,
.info-table a:hover,
.info-table a:focus { color: var(--gold-dark); }
.teaming-inquiry-card {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1.05fr);
  gap: 34px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: 0 10px 28px rgba(17, 24, 39, 0.06);
}
.form-ready-note,
.inquiry-disclaimer,
.dark-note,
.footer-dba {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.45;
  margin: 16px 0 0;
}
.dark-note { color: #cbd5e1; }
.footer-dba { color: #aab7c4; }
.form-shortcode-wrap input,
.form-shortcode-wrap textarea,
.form-shortcode-wrap select {
  width: 100%;
  max-width: 100%;
}
a:focus-visible,
button:focus-visible,
.button:focus-visible,
.header-cta:focus-visible,
.mobile-nav-cta:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

@media (max-width: 1200px) {
  .nav-menu { gap: 14px; }
  .nav-menu a { font-size: 0.86rem; }
  .header-cta { padding: 9px 13px; font-size: 0.82rem; }
}
@media (max-width: 1120px) {
  .primary-nav { flex: initial; }
  .mobile-nav-cta { display: flex; }
}
@media (max-width: 980px) {
  .teaming-inquiry-card { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .header-cta { display: none; }
  .teaming-inquiry-card { padding: 22px; }
}


/* === FBFS V9.8.8 homepage cleanup baseline === */
.hero-grid-refined {
  grid-template-columns: minmax(0, 1.05fr) minmax(310px, 0.62fr);
  gap: 64px;
  align-items: center;
  padding: 72px 0 86px;
}
.hero-grid-refined .hero-content {
  max-width: 820px;
}
.hero-grid-refined h1 {
  max-width: 760px;
  font-size: clamp(2.25rem, 4.85vw, 4.15rem);
  letter-spacing: -0.047em;
  margin-bottom: 18px;
}
.hero-grid-refined .hero-lede {
  max-width: 640px;
  font-size: clamp(1.05rem, 1.35vw, 1.2rem);
  line-height: 1.48;
}
.hero-grid-refined .hero-actions {
  margin-top: 28px;
}
.hero-cred-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
}
.hero-cred-strip li {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 13px;
  border-radius: 999px;
  color: #e5edf5;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.86rem;
  font-weight: 800;
}
.hero-panel-lean {
  padding: 30px 32px;
}
.hero-panel-lean p.hero-panel-headline {
  font-size: clamp(2.05rem, 3.2vw, 3.2rem);
  line-height: 1.05;
  margin-bottom: 14px;
}
.hero-panel-lean p.hero-panel-copy {
  font-size: 1rem;
  line-height: 1.48;
  font-weight: 700;
  color: #d8e2ec;
  margin-bottom: 0;
}
.hero-proof-points {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}
.hero-proof-points span {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #f8fafc;
  font-size: 0.92rem;
  font-weight: 800;
}
.snapshot {
  margin-top: 0;
  padding-top: 34px;
}

@media (max-width: 980px) {
  .hero-grid-refined {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 58px 0 72px;
  }
  .hero-panel-lean {
    max-width: 760px;
  }
  .snapshot {
    padding-top: 26px;
  }
}
@media (max-width: 640px) {
  .hero-grid-refined {
    padding: 44px 0 58px;
    gap: 28px;
  }
  .hero-grid-refined h1 {
    font-size: clamp(2.05rem, 9vw, 2.8rem);
  }
  .hero-grid-refined .hero-lede {
    font-size: 1.02rem;
  }
  .hero-cred-strip {
    gap: 8px;
  }
  .hero-cred-strip li {
    width: 100%;
    justify-content: center;
  }
  .hero-panel-lean {
    padding: 24px 22px;
  }
  .snapshot {
    padding-top: 20px;
  }
}

/* === FBFS V9.8.8 de-bloat and header action cleanup === */
body { padding-top: 104px; }
.header-inner { min-height: 104px; gap: 16px; }
.brand-text strong { font-size: 1.02rem; }
.brand-text em { max-width: 310px; font-size: 0.74rem; line-height: 1.25; color: #d7e2ec; }
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}
.header-actions .header-cta,
.mobile-nav-actions .mobile-nav-cta { margin: 0; }
.header-download,
.mobile-nav-download {
  background: var(--gold) !important;
  color: var(--navy) !important;
  border-color: var(--gold) !important;
}
.header-download:hover,
.header-download:focus,
.mobile-nav-download:hover,
.mobile-nav-download:focus {
  background: #d4aa4a !important;
  border-color: #d4aa4a !important;
  color: var(--navy) !important;
}
.mobile-nav-actions {
  display: none;
  gap: 10px;
  flex-direction: column;
  padding: 10px 20px 18px;
}
.mobile-nav-actions .mobile-nav-cta { width: 100%; }

.hero-grid-refined {
  grid-template-columns: minmax(0, 1.12fr) minmax(290px, 0.58fr);
  gap: 58px;
  padding: 58px 0 60px;
}
.hero-grid-refined h1 { max-width: 820px; }
.hero-grid-refined .hero-lede { max-width: 690px; }
.hero-panel-lean { padding: 26px 28px; }
.hero-panel-lean p.hero-panel-headline {
  font-size: clamp(1.9rem, 2.7vw, 2.85rem);
  margin-bottom: 10px;
}
.hero-panel-lean p.hero-panel-copy { font-size: 0.98rem; }

.home-overview { padding-top: 58px; padding-bottom: 58px; }
.home-overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: 34px;
  align-items: start;
}
.tight-heading { margin-bottom: 18px; }
.tight-heading h2 { font-size: clamp(1.45rem, 2.3vw, 2.15rem); margin-bottom: 0; }
.audience-grid-six {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 18px;
}
.audience-grid-six li {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  font-size: 0.98rem;
}
.value-list {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.value-list li {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 5px solid var(--gold);
  border-radius: 14px;
  padding: 14px 16px;
}
.value-list strong,
.value-list span { display: block; }
.value-list strong { color: var(--navy); line-height: 1.2; margin-bottom: 3px; }
.value-list span { color: var(--muted); line-height: 1.38; font-size: 0.95rem; }

.snapshot { padding-top: 26px; }
.snapshot-card-compact { padding: 26px; }
.snapshot-header-compact { padding-bottom: 18px; max-width: 760px; }
.snapshot-header-compact h2 { font-size: clamp(1.3rem, 2.35vw, 2.05rem); }
.snapshot-actions-single { margin-top: 20px; }

.home-proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 1fr) minmax(250px, 0.7fr);
  gap: 28px;
  align-items: start;
}
.home-proof-grid > div:first-child .button { margin-top: 10px; }
.compact-proof-list {
  display: grid;
  gap: 12px;
}
.compact-proof-list div { padding: 14px; }
.compact-proof-list strong { font-size: 1.45rem; }
.support-fit-card {
  background: var(--off-white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}
.support-fit-card h3 { margin-bottom: 8px; }
.support-fit-card p { color: var(--muted); margin-bottom: 8px; }

.cta-band-compact { padding: 34px 0; }
.cta-band-compact h2 { font-size: clamp(1.45rem, 2.4vw, 2.1rem); }
.cta-band-compact p:not(.eyebrow) { max-width: 560px; }

@media (max-width: 1320px) {
  .nav-menu { gap: 10px; }
  .nav-menu a { font-size: 0.82rem; }
  .header-actions .header-cta { padding: 9px 12px; font-size: 0.78rem; }
}
@media (max-width: 1220px) {
  .primary-nav { flex: initial; }
  .mobile-nav-actions { display: flex; }
}
@media (max-width: 1120px) {
  .primary-nav { flex: initial; }
  .mobile-nav-actions { display: flex; }
  .header-actions { display: flex; }
}
@media (max-width: 980px) {
  body { padding-top: 96px; }
  .header-inner { min-height: 96px; }
  .hero-grid-refined,
  .home-overview-grid,
  .home-proof-grid { grid-template-columns: 1fr; }
  .hero-grid-refined { padding: 48px 0 52px; gap: 28px; }
  .home-overview { padding-top: 48px; padding-bottom: 48px; }
  .support-fit-card { max-width: 720px; }
}
@media (max-width: 760px) {
  .header-actions { display: none; }
  .mobile-nav-actions { display: flex; }
  .brand-text em { max-width: 260px; font-size: 0.69rem; }
}
@media (max-width: 640px) {
  body { padding-top: 82px; }
  .header-inner { min-height: 82px; }
  .brand-text em { display: none; }
  .audience-grid-six { grid-template-columns: 1fr; }
  .hero-grid-refined { padding: 36px 0 42px; }
  .home-overview { padding-top: 40px; padding-bottom: 40px; }
  .snapshot-card-compact { padding: 22px; }
}
@media (max-width: 1220px) { .primary-nav { top: 104px; } }
@media (max-width: 980px) { .primary-nav { top: 96px; } }
@media (max-width: 640px) { .primary-nav { top: 82px; } }

/* === FBFS v9.8.8 layout discipline pass === */
body { padding-top: 0 !important; }
.site-header .container.header-inner {
  width: 100%;
  max-width: none;
  padding-left: clamp(22px, 3.2vw, 56px);
  padding-right: clamp(22px, 3.2vw, 56px);
}
.header-inner {
  min-height: 96px !important;
  gap: clamp(18px, 2.1vw, 36px) !important;
}
.brand {
  flex: 0 0 auto;
  min-width: min(430px, 34vw);
}
.brand-text strong {
  font-size: clamp(1.08rem, 1.55vw, 1.45rem) !important;
  line-height: 1.05;
}
.brand-text em {
  max-width: none !important;
  font-size: clamp(0.78rem, 1vw, 0.96rem) !important;
  line-height: 1.25 !important;
}
.primary-nav {
  flex: 1 1 auto !important;
  min-width: 0;
}
.nav-menu {
  justify-content: center;
  flex-wrap: nowrap;
  gap: clamp(16px, 1.8vw, 34px) !important;
}
.nav-menu a {
  white-space: nowrap;
  font-size: clamp(0.92rem, 1.06vw, 1.12rem) !important;
}
.header-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
}
.header-actions .header-cta {
  padding: 9px 15px !important;
  font-size: clamp(0.78rem, 0.92vw, 0.9rem) !important;
  min-height: 40px;
}

.hero-single {
  position: relative;
  z-index: 1;
  padding: 58px 0 56px;
  max-width: 980px;
}
.hero-single h1 {
  max-width: 880px;
  font-size: clamp(2.45rem, 5vw, 4.55rem);
}
.hero-single .hero-lede {
  max-width: 760px;
}
.home-overview { padding-top: 48px; }
.value-list li { padding: 13px 15px; }

.page-hero .container,
.page-hero-split {
  padding-top: 54px;
  padding-bottom: 54px;
}
.contracting-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(430px, 1.05fr);
  gap: 34px;
  align-items: center;
  padding-top: 38px !important;
  padding-bottom: 38px !important;
}
.contracting-hero-grid h1 {
  font-size: clamp(2.1rem, 4vw, 3.85rem);
  margin-bottom: 14px;
}
.hero-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}
.contracting-quick-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  background: rgba(8, 25, 42, 0.72);
  border: 1px solid rgba(255,255,255,0.18);
  border-left: 6px solid var(--gold);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: 0 22px 48px rgba(0,0,0,0.22);
}
.contracting-quick-panel div {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 10px 12px;
}
.contracting-quick-panel span {
  display: block;
  color: #cbd5e1;
  font-size: 0.72rem;
  line-height: 1.2;
  margin-bottom: 3px;
}
.contracting-quick-panel strong {
  display: block;
  color: var(--white);
  font-size: 0.94rem;
  line-height: 1.2;
}
.hero-quickline {
  color: var(--white) !important;
  font-weight: 800;
  margin-top: 14px;
}
.code-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.cta-band-compact { padding: 30px 0; }
.cta-band-compact p:not(.eyebrow) { max-width: 520px; }

@media (max-width: 1280px) {
  .brand { min-width: min(385px, 34vw); }
  .nav-menu { gap: 16px !important; }
  .nav-menu a { font-size: 0.92rem !important; }
  .header-actions .header-cta { padding: 8px 12px !important; }
}
@media (max-width: 1120px) {
  .menu-toggle { display: inline-flex; }
  .primary-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 96px !important;
    background: var(--navy);
    border-top: 1px solid rgba(255,255,255,0.12);
    display: none;
    flex: initial !important;
  }
  .primary-nav.is-open { display: block; }
  .nav-menu { flex-direction: column; align-items: stretch; gap: 0 !important; padding: 12px 20px 18px; }
  .nav-menu a { display: block; padding: 13px 0; }
  .header-actions { display: flex; margin-left: auto; }
  .mobile-nav-actions { display: flex; }
  .contracting-hero-grid { grid-template-columns: 1fr; }
  .contracting-quick-panel { max-width: 760px; }
}
@media (max-width: 820px) {
  .header-actions { display: none; }
  .brand { min-width: 0; }
  .contracting-quick-panel,
  .code-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .site-header .container.header-inner {
    padding-left: 14px;
    padding-right: 14px;
  }
  .header-inner { min-height: 82px !important; }
  .primary-nav { top: 82px !important; }
  .hero-single { padding: 36px 0 40px; }
  .page-hero .container,
  .page-hero-split,
  .contracting-hero-grid { padding-top: 36px !important; padding-bottom: 36px !important; }
  .hero-link-row .button { width: 100%; }
}

/* === FBFS v9.8.8 header reset and above-fold discipline === */
body { padding-top: 126px !important; }
.site-header.site-header-two-row {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(11, 31, 51, 0.99);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.site-header .container.header-shell {
  width: 100%;
  max-width: none;
  margin: 0;
  padding-left: clamp(20px, 2.4vw, 48px);
  padding-right: clamp(20px, 2.4vw, 48px);
}
.header-shell {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.header-topline {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.header-topline .brand {
  min-width: 0;
  flex: 1 1 auto;
  gap: 14px;
}
.header-topline .brand-emblem-img {
  width: 58px;
  min-width: 58px;
  height: 58px;
}
.header-topline .brand-text strong {
  font-size: clamp(1.12rem, 1.55vw, 1.55rem) !important;
  line-height: 1.05;
}
.header-topline .brand-text em {
  display: block;
  max-width: none !important;
  font-size: clamp(0.8rem, 0.95vw, 0.98rem) !important;
  line-height: 1.22 !important;
  color: #d5e0eb;
}
.header-topline .header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex: 0 0 auto;
}
.header-topline .header-cta {
  min-height: 44px;
  padding: 10px 20px !important;
  font-size: clamp(0.86rem, 0.95vw, 0.98rem) !important;
}

.hero-sub {
  color: #c8d8e8;
  max-width: 760px;
  font-size: 1rem;
  margin-top: 8px;
  line-height: 1.52;
}
.site-header-two-row .menu-toggle { display: none; }
.site-header-two-row .primary-nav {
  position: static;
  display: block;
  flex: none !important;
  min-width: 0;
  width: 100%;
  background: transparent;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.site-header-two-row .nav-menu {
  width: 100%;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-wrap: nowrap;
  gap: clamp(18px, 2.2vw, 44px) !important;
  margin: 0;
  padding: 0;
}
.site-header-two-row .nav-menu a {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 6px 0;
  white-space: nowrap;
  font-size: clamp(0.88rem, 0.95vw, 1rem) !important;
  line-height: 1.12;
}
.site-header-two-row .mobile-nav-actions { display: none; }

/* Keep each page's primary message visible quickly below the fixed header. */
.hero-single {
  padding-top: 46px !important;
  padding-bottom: 44px !important;
}
.hero-single h1 {
  font-size: clamp(2.25rem, 4.2vw, 3.85rem) !important;
  max-width: 980px;
  margin-bottom: 14px;
}
.hero-single .hero-lede {
  max-width: 820px;
  font-size: clamp(1rem, 1.15vw, 1.12rem);
}
.page-hero .container,
.page-hero-split,
.contracting-hero-grid {
  padding-top: 36px !important;
  padding-bottom: 36px !important;
}
.page-hero h1 {
  font-size: clamp(2rem, 3.35vw, 3.15rem) !important;
  line-height: 1.08;
  max-width: 920px;
  margin-bottom: 14px;
}
.page-hero p:not(.eyebrow):not(.hero-quickline) {
  max-width: 850px;
}
.contracting-hero-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.82fr) !important;
  gap: 28px !important;
  align-items: center;
}
.contracting-quick-panel {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  padding: 16px;
}
.contracting-quick-panel div { padding: 8px 10px; }
.contracting-quick-panel span { font-size: 0.68rem; }
.contracting-quick-panel strong { font-size: 0.88rem; }
.hero-link-row { margin-top: 18px; }
.hero-link-row .button { min-height: 42px; padding: 10px 15px; }
.home-overview { padding-top: 40px; }
.home-overview-grid { gap: 28px; }

@media (max-width: 1180px) {
  body { padding-top: 84px !important; }
  .header-topline { min-height: 84px; }
  .site-header-two-row .menu-toggle {
    display: inline-flex;
    flex: 0 0 auto;
  }
  .site-header-two-row .primary-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 84px !important;
    display: none;
    background: var(--navy);
    border-top: 1px solid rgba(255,255,255,0.12);
  }
  .site-header-two-row .primary-nav.is-open { display: block; }
  .site-header-two-row .nav-menu {
    min-height: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0 !important;
    padding: 10px 22px 12px;
  }
  .site-header-two-row .nav-menu a {
    display: block;
    min-height: 0;
    padding: 12px 0;
    font-size: 1rem !important;
  }
  .site-header-two-row .mobile-nav-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0 22px 18px;
  }
  .header-topline .header-actions { display: flex; }
  .contracting-hero-grid { grid-template-columns: 1fr !important; }
  .contracting-quick-panel { max-width: 760px; }
}
@media (max-width: 760px) {
  .header-topline .header-actions { display: none; }
  .header-topline .brand-emblem-img { width: 48px; min-width: 48px; height: 48px; }
  .header-topline .brand-text strong { font-size: 1.02rem !important; }
  .header-topline .brand-text em { font-size: 0.72rem !important; }
  .contracting-quick-panel { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  body { padding-top: 78px !important; }
  .site-header .container.header-shell { padding-left: 14px; padding-right: 14px; }
  .header-topline { min-height: 78px; gap: 12px; }
  .site-header-two-row .primary-nav { top: 78px !important; }
  .header-topline .brand-text em { display: none; }
  .page-hero .container,
  .page-hero-split,
  .contracting-hero-grid,
  .hero-single { padding-top: 30px !important; padding-bottom: 32px !important; }
}
