/* Artemis site stylesheet
   Base: index.scss
   Generated by combining the former page-level SCSS files. */
:root {
  --ink: #0b1320;
  /* deep navy */
  --stone: #f5f2ea;
  /* marble */
  --gold: #c8a96b;
  /* gold */
  --gold-2: #b08a2f;
  /* darker gold */
  --slate: #394150;
  /* muted gray */
  --font-display: "Cinzel", serif;
  --header-ink: #121316;
  --cinzel-scale: 0.75;
  --brand-title-width: clamp(112px, 25.6vw, 308px);
  --brand-emblem-ratio: 0.325;
  --brand-logo-width: clamp(
    38.4px,
    calc(var(--brand-title-width) * var(--brand-emblem-ratio)),
    100px
  );
  --tagline-size: 10.4px;
  --font-body: "Open Sans", sans-serif;
}

body {
  color: var(--ink);
  font-family: var(--font-body);
  background: var(--ink);
  overflow-x: hidden;
}

.gap-2 {
  gap: 0.75rem !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

h5,
.h5 {
  font-weight: 700;
}

h1.display-5 {
  font-size: calc(3rem * var(--cinzel-scale) - 2px);
}

h2.display-6 {
  font-size: calc(2.5rem * var(--cinzel-scale));
}

.hero-headline {
  font-weight: 500;
}

.hero-headline {
  font-size: calc(3rem * var(--cinzel-scale) + 1px);
}

.hero-copy-stack {
  --hero-eyebrow-space: 19px;
  --hero-headline-space: calc(1em + 0.5rem);
  --hero-copy-space: 4.6em;
  --hero-summary-space: 8.75em;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-copy-stack.hero-copy-stack-home {
  --hero-headline-space: calc(2em + 0.5rem);
}

@media (min-width: 992px) {
  .hero-carousel .hero-copy-stack {
    transform: translateY(-30px);
  }
}
.hero-copy-stack .eyebrow {
  min-height: var(--hero-eyebrow-space);
  display: flex;
  align-items: flex-start;
  padding-top: 20px;
}

.hero-copy-stack .hero-headline {
  min-height: var(--hero-headline-space);
}

.hero-copy-stack .hero-copy {
  min-height: var(--hero-copy-space);
}

.hero-copy-stack .hero-summary {
  min-height: var(--hero-summary-space);
}

h2.h5 {
  font-size: calc(1.25rem * var(--cinzel-scale));
}

h3.h4 {
  font-size: calc(1.5rem * var(--cinzel-scale));
}

.modal .modal-content h3.h4 {
  font-size: 28px;
}

.briefing-cta {
  font-size: 15px;
  padding: 0.85rem 2.5rem;
  border-radius: 0;
}

.modal-headline {
  font-size: 28px;
}

body .btn:not(.btn-sm) {
  font-size: 15px;
  padding: 0.85rem 2.5rem;
}

.modal .briefing-consent {
  font-size: 11px;
  text-align: center;
  margin-top: 10px;
}

.modal .briefing-actions {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  margin-bottom: 10px;
}

.modal .briefing-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.modal .briefing-row .briefing-actions {
  margin: 0;
  justify-content: flex-end;
}

.modal .briefing-row .briefing-consent {
  margin: 0;
  text-align: left;
}

.logo-font {
  font-family: var(--font-display);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: calc(1em * var(--cinzel-scale));
}

.navbar-brand {
  min-width: 0;
  gap: 0.8rem !important;
}

.brand-logo {
  height: auto;
  width: var(--brand-logo-width);
  display: block;
}

.brand-title {
  width: var(--brand-title-width);
  max-width: 100%;
  height: auto;
  display: block;
}

.brand-stack {
  width: max-content;
  max-width: var(--brand-title-width);
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brand-stack .small-caps {
  font-size: var(--tagline-size);
  font-family: var(--font-body);
  border-top: 1px solid var(--gold);
  text-align: center;
  padding-top: 8px;
  margin-top: 6px;
}

@media (max-width: 991.98px) {
  .navbar > .container {
    flex-wrap: wrap;
    align-items: center;
    position: relative;
  }
  .navbar-brand {
    flex: 1 1 auto;
    max-width: calc(100% - 76px);
  }
  .navbar-toggler {
    flex: 0 0 auto;
    margin-left: 12px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }
  .brand-stack .small-caps {
    display: none;
  }
  .brand-stack {
    max-width: min(100vw - 148px, var(--brand-title-width) * 1.5625);
  }
  .brand-title {
    width: min(100vw - 148px, var(--brand-title-width) * 1.5625);
  }
  .brand-logo {
    width: calc(var(--brand-logo-width) * 1.25);
  }
  .navbar-collapse {
    position: static;
    flex-basis: 100%;
    width: 100%;
    margin-top: 14px;
    padding: 4px 0 12px;
    text-align: right;
    z-index: auto;
  }
  .navbar-collapse.show {
    display: block;
  }
  .navbar-nav {
    width: 100%;
    align-items: flex-end;
  }
  .navbar-nav .nav-link {
    padding-right: 0;
    text-align: right;
  }
  .navbar-collapse .dropdown-menu {
    position: static;
    min-width: 0;
    margin-top: 0.25rem;
    padding: 0;
    background: transparent;
    border: 0;
    text-align: right;
  }
  .navbar-collapse .dropdown-item {
    padding-right: 0;
    padding-left: 1rem;
    text-align: right;
  }
  .navbar-collapse .dropdown-menu li + li .dropdown-item {
    color: var(--gold);
  }
  .navbar-collapse .dropdown-menu li:first-child .dropdown-item {
    color: #fff;
  }
  .navbar-collapse .d-flex.ms-lg-3.gap-2 {
    width: 100%;
    justify-content: flex-end;
    margin-top: 1rem;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .brand-stack .small-caps {
    font-size: var(--tagline-size);
  }
}
.navbar .brand-logo,
.navbar .brand-title {
  filter: none;
}

.bg-ink {
  background: var(--ink);
}

.bg-header {
  background: var(--header-ink);
}

.text-gold {
  color: var(--gold);
}

.btn-gold {
  --bs-btn-bg: var(--gold);
  --bs-btn-border-color: var(--gold);
  --bs-btn-color: #111;
  --bs-btn-hover-bg: transparent;
  --bs-btn-hover-border-color: var(--gold);
  --bs-btn-hover-color: var(--gold);
  --bs-btn-active-bg: transparent;
  --bs-btn-active-border-color: var(--gold);
  --bs-btn-active-color: var(--gold);
  --bs-btn-border-width: 1px;
  font-weight: 600;
  background-color: var(--gold);
  background-image: linear-gradient(180deg, var(--gold) 0%, var(--gold-2) 100%);
  text-shadow: none;
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, background-image 0.2s ease, box-shadow 0.2s ease;
}

.btn-gold:hover,
.btn-gold:focus-visible {
  background-color: transparent;
  background-image: none;
  border-color: var(--gold);
  color: var(--gold);
}

.btn-gold:active {
  background-color: transparent;
  background-image: none;
  border-color: var(--gold);
  color: var(--gold);
}

.btn-outline-gold {
  --bs-btn-color: var(--gold);
  --bs-btn-border-color: var(--gold);
  --bs-btn-hover-bg: var(--gold);
  --bs-btn-hover-border-color: var(--gold);
  --bs-btn-hover-color: #111;
  font-weight: 600;
  background-color: transparent;
}

.btn-outline-gold:hover,
.btn-outline-gold:focus-visible {
  background-color: var(--gold);
}

.btn {
  font-family: "Open Sans", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.072em;
  font-size: 16px;
  font-weight: 700;
  border-radius: 0;
  box-shadow: none;
}

.btn:not(.btn-sm):not(.nav-cta) {
  font-size: 15px;
}

.btn:focus,
.btn:focus-visible,
.btn:active {
  box-shadow: none;
}

.hero .btn.btn-lg:not(.briefing-cta),
.hero-cta .btn:not(.btn-sm),
.service-overview .overview-cta-desktop .btn:not(.btn-sm),
.overview-cta-mobile .btn:not(.btn-sm),
.sow-hero .btn:not(.btn-sm) {
  padding: 0.65rem 1.75rem;
}

.btn.btn-gold {
  background-color: var(--gold);
  background-image: linear-gradient(180deg, var(--gold) 0%, var(--gold-2) 100%);
}

.btn.btn-gold:hover,
.btn.btn-gold:focus-visible {
  background-color: transparent;
  background-image: none;
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: inset 0 0 0 1px rgba(200, 169, 107, 0.28);
}

.btn.btn-gold:active {
  background-color: transparent;
  background-image: none;
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: inset 0 0 0 1px rgba(200, 169, 107, 0.36);
}

.cta-link {
  color: var(--gold);
  text-decoration: underline;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
}

.cta-link:hover {
  color: #c8a96b;
  text-decoration: none;
}

.menu-size {
  font-size: 14px;
}

/* Clean marble background without decorative overlays */
.marble {
  background: linear-gradient(180deg, #f7f4ec 0%, #ede8dc 100%);
}

.hero {
  position: relative;
  overflow: hidden;
  color: #c8a96b;
  min-height: calc(70vh - 300px);
  background: linear-gradient(135deg, rgba(11, 19, 32, 0.92) 0%, rgba(18, 26, 42, 0.92) 45%, rgba(11, 19, 32, 0.92) 100%), url("../images/slider-3.jpg") center 40%/cover no-repeat, radial-gradient(900px 500px at 15% 10%, var(--gold), transparent 60%), radial-gradient(900px 500px at 85% 25%, var(--gold), transparent 60%), linear-gradient(135deg, #0b1320 0%, #121a2a 45%, #0b1320 100%);
}

.hero-slab {
  min-height: auto;
}

.home-capabilities-card .fw-semibold {
  margin-bottom: 8px;
}

.hero-slide {
  background: linear-gradient(135deg, rgba(11, 19, 32, 0.92) 0%, rgba(18, 26, 42, 0.92) 45%, rgba(11, 19, 32, 0.92) 100%), var(--hero-image) center 40%/cover no-repeat, radial-gradient(900px 500px at 15% 10%, var(--gold), transparent 60%), radial-gradient(900px 500px at 85% 25%, var(--gold), transparent 60%), linear-gradient(135deg, #0b1320 0%, #121a2a 45%, #0b1320 100%);
}

.hero-slide--slider-1 {
  --hero-image: url("../images/slider-1.jpg");
}

.hero-slide--slider-2 {
  --hero-image: url("../images/slider-2.jpg");
}

.hero-slide--slider-3 {
  --hero-image: url("../images/slider-3.jpg");
}

.hero-carousel,
.hero-carousel .carousel-inner,
.hero-carousel .carousel-item {
  height: 100%;
}

.hero-carousel {
  min-height: calc(70vh - 300px);
}

.hero-carousel .carousel-item {
  min-height: calc(70vh - 300px);
}

.hero-carousel .carousel-item.active,
.hero-carousel .carousel-item-next,
.hero-carousel .carousel-item-prev {
  display: flex;
  align-items: center;
}

@media (max-width: 991.98px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  .hero .carousel-item > .container.section-pad,
  #about > .container.section-pad {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .capability-card,
  .modern-security-card,
  .home-capabilities-card,
  .bg-white.card-shadow.border,
  .modal-content {
    padding: 20px !important;
  }
  .hero .carousel-item .container.section-pad > .row,
  #about > .container.section-pad > .row,
  #about .col-lg-5 > .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
    --bs-gutter-x: 0;
  }
  #about > .container.section-pad > .row {
    --bs-gutter-y: 12px;
  }
  #about .modern-security-boxes {
    --bs-gutter-y: 20px;
  }
  #about .about-footnote-desktop {
    display: none;
  }
  #about .about-footnote-mobile {
    display: block;
    margin-top: 0;
    padding-top: 20px;
    font-size: 12px;
  }
  .hero-carousel.hero-tight .section-pad {
    padding-top: 1.8rem !important;
    padding-bottom: 5rem !important;
  }
  .hero-copy-stack {
    --hero-eyebrow-space: 16px;
    --hero-headline-space: calc(1em + 0.5rem);
    --hero-copy-space: 6em;
    --hero-summary-space: 11.5em;
  }
  .hero-copy-stack.hero-copy-stack-home {
    --hero-headline-space: calc(3em + 0.5rem - 20px);
  }
  .hero-headline {
    font-size: calc(3rem * var(--cinzel-scale) - 1px);
  }
  .hero-cta {
    flex-direction: column;
    align-items: center;
    row-gap: 12px;
    column-gap: 0;
    margin-top: 3rem !important;
  }
  .hero-cta .btn {
    width: min(100%, 280px);
  }
  .mobile-flat {
    border: none !important;
    box-shadow: none !important;
  }
  .hero-carousel .carousel-indicators {
    left: 50%;
    bottom: 18px;
    width: auto;
    margin: 0;
    transform: translateX(-50%);
  }
  .hero-carousel .carousel-control-prev,
  .hero-carousel .carousel-control-next {
    top: auto;
    bottom: 12px;
    width: 32px;
    height: 32px;
    transform: none;
  }
  .hero-carousel .carousel-control-prev {
    left: calc(50% - 82px);
    right: auto;
  }
  .hero-carousel .carousel-control-next {
    left: auto;
    right: calc(50% - 82px);
  }
  .hero-carousel .carousel-control-prev-icon,
  .hero-carousel .carousel-control-next-icon {
    width: 1.1rem;
    height: 1.1rem;
  }
  footer .container.px-0 {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  footer .row.gy-4,
  footer .row.gy-3 {
    justify-content: center;
    text-align: center;
    column-gap: 0 !important;
    margin-left: 0;
    margin-right: 0;
  }
  footer .row.gy-4 > [class*=col-],
  footer .row.gy-3 > [class*=col-] {
    display: flex;
    flex-direction: column;
    align-items: center !important;
    text-align: center !important;
  }
  footer a {
    font-size: 12px;
  }
  footer .col-lg-4.d-flex.flex-column.text-end.align-items-end,
  footer .col-lg-4.d-flex.flex-column.text-end.align-items-end.p-0,
  footer .col-lg-4.d-flex.flex-column.text-end.align-items-end.p-3 {
    align-items: center !important;
    text-align: center !important;
  }
  footer form.d-flex.align-items-center.gap-2.ms-auto {
    width: 100%;
    max-width: 320px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    justify-content: center;
  }
  footer form.d-flex.align-items-center.gap-2.ms-auto input {
    width: 100% !important;
    margin-left: 0 !important;
  }
  footer img[alt="Artemis Global"] {
    margin-top: 30px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-cta {
    align-items: flex-start;
  }
}
.hero-carousel .carousel-indicators {
  bottom: 18px;
  padding-top: 15px;
}

.section-pad {
  padding: 4.5rem 0;
}

#about {
  position: relative;
  background: #f6f2e9;
  overflow: hidden;
}

/*
               #about::before {
                    content: "";
                    position: absolute;
                    inset: 0;
                    background: url("../images/logo-badge.png") left -41% bottom -41% / min(110vw, 840px) no-repeat;
                    opacity: 0.375;
                    pointer-events: none;
               }
               */
#about .container {
  position: relative;
  z-index: 1;
}

#about .list-unstyled > li.d-flex {
  gap: 6px !important;
}

.card-shadow {
  box-shadow: none;
}

.card-shadow,
.rounded-4,
.pillar-item,
.pillar-card,
.modern-security-card,
.home-capabilities-card,
.capability-card,
.mobile-flat,
.modal-content {
  border-radius: 0 !important;
}

.small-caps {
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: calc(0.78rem * var(--cinzel-scale));
  color: rgba(255, 255, 255, 0.75);
  font-family: var(--font-display);
}

.icon-badge {
  width: 66px;
  height: 66px;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 66px;
  background: transparent;
  border: none;
  color: var(--gold);
  font-weight: 800;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: calc(1.5em * var(--cinzel-scale));
}

.icon-badge img,
.capability-glyph img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  display: block;
}

.about-icon-badge svg {
  width: 40px;
  height: 40px;
  display: block;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-icon {
  font-size: 48px;
}

.contact-icon-email {
  font-size: 69.12px;
}

.contact-icon-globe {
  font-size: 57.6px;
  font-size: 0;
}

.contact-icon-globe svg {
  width: 46px;
  height: 46px;
  display: block;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
}

.contact-icon-phone {
  transform: scale(0.8925);
}

.creed-icon {
  font-size: calc(5.85em * var(--cinzel-scale));
  width: auto;
  height: auto;
}

.creed-title {
  font-size: calc(1.5rem * var(--cinzel-scale) * 2.028);
}

.creed-header {
  gap: 10px;
  margin-top: -40px;
  margin-bottom: calc(1rem - 60px);
}

.hero-icon {
  font-size: calc(1.5em * var(--cinzel-scale) * 1.6);
}

.capability-glyph {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.9rem;
  line-height: 1;
  -webkit-clip-path: polygon(50% 0%, 88% 14%, 88% 58%, 50% 100%, 12% 58%, 12% 14%);
  clip-path: polygon(50% 0%, 88% 14%, 88% 58%, 50% 100%, 12% 58%, 12% 14%);
}

.contact-section {
  background: radial-gradient(900px 400px at 90% 0%, rgba(18, 26, 42, 0.08), transparent 60%), linear-gradient(180deg, #ffffff 0%, #f0ece3 100%);
  border-top: 1px solid rgba(18, 26, 42, 0.08);
}

.eyebrow {
  font-family: var(--font-body);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
}

.hero .eyebrow {
  color: #fff;
}

.inspired-copy {
  font-size: 16px;
}

.hero-copy {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 0;
  padding-left: 18px;
}

.hero-copy::before {
  content: "";
  position: absolute;
  top: calc(0.15em + 8px);
  bottom: calc(0.15em + 8px);
  left: 0;
  width: 2px;
  background: rgba(255, 255, 255, 0.9);
}

.hero-summary {
  margin-top: 1rem;
}

.pillar-link {
  color: inherit;
  text-decoration: none;
  display: flex;
}

.pillar-link:hover,
.pillar-link:focus {
  color: inherit;
}

.hero .pillar-item p {
  display: none;
}

.hero .pillar-item.align-items-start {
  align-items: center !important;
}

.hero .pillar-item .h5 {
  font-family: var(--font-body);
  margin-bottom: 0 !important;
  color: #fff;
}

.hero .pillar-item {
  padding-top: calc(0.75rem - 10px);
  padding-bottom: calc(0.75rem - 10px);
}

.hero .hero-cta {
  margin-top: calc(3rem - 20px) !important;
}

.hero .hero-cta.hero-cta--raised {
  margin-top: calc(3rem - 50px) !important;
}

.pillar-item {
  padding: 0.75rem;
  border-radius: 0;
  transition: background-color 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
  border: 1px solid transparent;
}

.pillar-item.is-highlight {
  background: rgba(200, 169, 107, 0.16);
  border-color: rgba(200, 169, 107, 0.65);
  box-shadow: inset 4px 0 0 var(--gold);
}

.hero .pillar-item.is-highlight .h5 {
  color: var(--gold);
}

.pillar-item.is-highlight .icon-badge img {
  filter: brightness(1.35) contrast(1.05);
}

.pillar-card {
  position: relative;
}

.hero .pillar-card {
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid var(--gold) !important;
}

.hero .pillar-card hr {
  margin-top: calc(1rem - 12px);
  margin-bottom: calc(1rem - 12px);
}

.hero .pillar-item,
.hero .pillar-item.is-highlight,
.hero .pillar-item:hover,
.hero .pillar-item:focus-visible {
  border-color: transparent !important;
  box-shadow: none !important;
}

.hero .pillar-item.is-highlight {
  background: rgba(200, 169, 107, 0.16);
}

/*
               .pillar-nav {
                    position: absolute;
                    top: 16px;
                    right: 16px;
                    display: flex;
                    flex-direction: column;
                    gap: 8px;
               }

               .pillar-nav-btn {
                    width: 36px;
                    height: 36px;
                    border-radius: 999px;
                    border: 1px solid var(--gold);
                    background: rgba(11, 19, 32, .65);
                    color: var(--gold);
                    display: inline-flex;
                    align-items: center;
                    justify-content: center;
                    font-size: 16px;
                    line-height: 1;
                    transition: background-color .2s ease, border-color .2s ease, transform .2s ease;
               }

               .pillar-nav-btn:hover,
               .pillar-nav-btn:focus-visible {
                    background: rgba(11, 19, 32, .85);
                    border-color: var(--gold);
                    transform: translateY(-1px);
               }

               .pillar-nav-btn:active {
                    transform: translateY(0);
               }
               */
footer a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}

.navbar-nav {
  gap: 1rem;
}

.nav-link {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 14px;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--gold);
}

.nav-link.active,
.nav-link[aria-current=page],
.dropdown-item.active,
.dropdown-item[aria-current=page] {
  color: var(--gold);
  background-color: transparent;
}

.dropdown-menu {
  border-radius: 0;
}

.navbar .nav-cta {
  font-size: 14px;
  font-weight: 700;
  border-radius: 0;
  white-space: nowrap;
}

.footer-contractor-badge {
  width: min(100%, 360px);
  max-width: 360px;
  flex: 0 0 auto;
  text-align: left;
}

.footer-contractor-badge-card {
  width: 100%;
  padding: 12px 14px 14px;
  border: 1px solid var(--gold);
  border-radius: 14px;
  background: linear-gradient(180deg, #141922 0%, #0d1116 100%);
  box-shadow: inset 0 0 0 1px var(--gold);
}

.footer-contractor-badge-layout {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 14px;
}

.footer-contractor-badge-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  flex: 1 1 auto;
}

.footer-contractor-badge-brand-copy {
  min-width: 0;
  flex: 1 1 auto;
  padding-right: 2px;
}

.footer-contractor-badge-meta {
  min-width: 108px;
  flex: 0 0 auto;
  padding-left: 2px;
}

.footer-contractor-badge-emblem {
  width: 60px;
  height: auto;
  flex: 0 0 auto;
  display: block;
}

.footer-contractor-badge-title {
  color: #f4e6be;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  letter-spacing: 0.07em;
  line-height: 1.1;
  white-space: nowrap;
}

.footer-contractor-badge-copy {
  margin-top: 6px;
  color: #c8a96b;
  font-size: 9px;
  letter-spacing: 0.14em;
  line-height: 1.15;
  text-transform: uppercase;
  font-weight: 700;
}

.footer-contractor-badge-copy span {
  display: block;
}

.footer-contractor-badge-copy span + span {
  margin-top: 1px;
}

.footer-contractor-badge-status {
  margin-top: 4px;
  color: #f7f0de;
  font-size: 12px;
  letter-spacing: 0.04em;
  line-height: 1.05;
  text-transform: uppercase;
  font-weight: 700;
}

.footer-contractor-badge-divider {
  width: 1px;
  height: auto;
  align-self: stretch;
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold) 100%);
}

.footer-contractor-badge-heading {
  color: #d7d0bd;
  font-size: 8.5px;
  letter-spacing: 0.12em;
  line-height: 1.25;
  text-transform: uppercase;
  font-weight: 600;
}

.footer-contractor-badge-heading span {
  display: block;
}

.footer-contractor-badge-codes {
  margin-top: 10px;
  display: grid;
  gap: 4px;
  color: #f7f0de;
}

.footer-contractor-badge-code {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: baseline;
  gap: 8px;
}

.footer-contractor-badge-code-label {
  color: #c8a96b;
  font-size: 9px;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 700;
}

.footer-contractor-badge-code-value {
  min-width: 0;
  font-size: 10px;
  line-height: 1.1;
  font-weight: 700;
  white-space: nowrap;
  overflow-wrap: normal;
}

.footer-contractor-badge-code-value--short {
  font-size: 11px;
}

.footer-link-cluster {
  min-width: 0;
}

.footer-link-column {
  flex: 0 0 auto;
  min-width: 0;
}

.footer-capabilities-column {
  min-width: 0;
}

.footer-capabilities-grid > div {
  min-width: 0;
}

.footer-main-column,
.footer-brand-column {
  min-width: 0;
}

.footer-brand-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.footer-wordmark {
  width: 250px;
  height: auto;
  margin-bottom: 10px;
  display: block;
  margin-left: auto;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.footer-copyright-break {
  display: block;
}

@media (max-width: 1199.98px) {
  .footer-link-row {
    justify-content: center;
    row-gap: 24px;
  }
  .footer-link-row > .col,
  .footer-link-row > .col-md-auto {
    flex: 0 0 100%;
    max-width: 100%;
    display: flex;
    justify-content: center;
  }
  .footer-main-column,
  .footer-brand-column {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .footer-contractor-badge {
    width: min(100%, 360px);
    max-width: 360px !important;
  }
  .footer-link-cluster {
    width: 100%;
    padding-top: 0;
    flex-direction: column !important;
    align-items: center !important;
    gap: 24px !important;
    text-align: center;
  }
  .footer-link-column {
    width: 100%;
    align-items: center;
    text-align: center;
  }
  .footer-link-column .mt-2,
  .footer-capabilities-grid {
    align-items: center !important;
  }
  .footer-brand-column {
    padding-top: 24px !important;
    align-items: center !important;
    text-align: center !important;
  }
  .footer-brand-block {
    align-items: center;
  }
  .footer-wordmark {
    margin-left: 0;
    margin-right: 0;
  }
  .footer-copyright {
    white-space: nowrap;
  }
  .footer-copyright-break {
    display: inline;
    margin-left: 0.35em;
  }
}
@media (min-width: 1200px) {
  .footer-link-row {
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
    column-gap: clamp(28px, 3vw, 44px) !important;
  }
  .footer-link-cluster {
    flex: 1 1 auto;
    display: flex !important;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start !important;
    gap: 50px !important;
    padding-top: 2px;
  }
  .footer-link-column {
    width: auto;
    flex: 0 0 auto;
  }
  .footer-link-column .mt-2,
  .footer-capabilities-grid {
    align-items: flex-start !important;
  }
}
footer a:hover {
  color: #c8a96b;
  text-decoration: underline;
}

/* nicer focus */
.form-control:focus,
.form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 0.25rem var(--gold);
}

.form-control,
.form-select,
textarea.form-control {
  border-color: rgba(18, 26, 42, 0.35);
  border-radius: 0;
}

.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
  width: 48px;
}

.hero-carousel .carousel-control-prev {
  left: 12px;
}

.hero-carousel .carousel-control-next {
  right: 12px;
}

@media (min-width: 992px) {
  .hero-carousel .carousel-control-prev {
    left: calc((100% - 960px) / 2);
    transform: translateX(-100%);
  }
  .hero-carousel .carousel-control-next {
    right: calc((100% - 960px) / 2);
    transform: translateX(100%);
  }
}
@media (min-width: 1200px) {
  .hero-carousel .carousel-control-prev {
    left: calc((100% - 1140px) / 2);
    transform: translateX(-100%);
  }
  .hero-carousel .carousel-control-next {
    right: calc((100% - 1140px) / 2);
    transform: translateX(100%);
  }
}
@media (min-width: 1400px) {
  .hero-carousel .carousel-control-prev {
    left: calc((100% - 1320px) / 2);
    transform: translateX(-100%);
  }
  .hero-carousel .carousel-control-next {
    right: calc((100% - 1320px) / 2);
    transform: translateX(100%);
  }
}
.modern-security-card {
  padding: 0 !important;
  overflow: hidden;
  background: #fff !important;
  border-color: var(--gold) !important;
}

.modern-security-card-receive {
  border-color: var(--gold) !important;
}

.modern-security-card-header {
  height: 30px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  background: var(--gold);
  border-bottom: 1px solid var(--gold);
}

.modern-security-card-receive .modern-security-card-header {
  background: var(--gold);
}

.modern-security-card-body {
  padding: 18px 24px 24px;
}

.modern-security-subhead {
  font-size: 18px;
  color: var(--gold);
  margin-bottom: 12px !important;
}

.modern-security-list {
  margin-left: 0;
  padding-left: 10px;
  font-size: 0.95rem;
  line-height: 1.5;
  list-style-position: inside;
}

.modern-security-card .modern-security-list {
  color: #2f3744 !important;
}

.modern-security-list li {
  margin-bottom: 0.65rem;
}

.modern-security-list li:last-child {
  margin-bottom: 0;
}

.about-footnote-mobile {
  display: none;
}

.service-card-title {
  margin: 0 !important;
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
}

.modern-security-card-header .service-card-title {
  font-size: 14px;
  color: #fff;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
}

.service-card-icon {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex: 0 0 30px;
}

.modern-security-card-header .service-card-icon {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  color: #fff;
}

.service-card-icon svg {
  width: 30px;
  height: 30px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.modern-security-card-header .service-card-icon svg {
  width: 16px;
  height: 16px;
}

.text-secondary {
  color: #2f3744 !important;
}

@media (min-width: 992px) {
  .modern-security-first {
    padding-top: 50px;
  }
}
/* about-us.scss */
body.page-about-us {
  color: var(--ink);
  font-family: var(--font-body);
  background: var(--ink);
  overflow-x: hidden;
}

body.page-about-us .gap-2 {
  gap: 0.75rem !important;
}

body.page-about-us h1,
body.page-about-us h2,
body.page-about-us h3,
body.page-about-us h4,
body.page-about-us h5,
body.page-about-us h6 {
  font-family: var(--font-display);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

body.page-about-us h5,
body.page-about-us .h5 {
  font-weight: 700;
}

body.page-about-us h1.display-5 {
  font-size: calc(3rem * var(--cinzel-scale) - 2px);
}

body.page-about-us h2.display-6 {
  font-size: calc(2.5rem * var(--cinzel-scale));
}

body.page-about-us h2.h5 {
  font-size: calc(1.25rem * var(--cinzel-scale));
}

body.page-about-us h3.h4 {
  font-size: calc(1.5rem * var(--cinzel-scale));
}

body.page-about-us .modal .modal-content h3.h4 {
  font-size: 28px;
}

body.page-about-us .briefing-cta {
  font-size: 15px;
  padding: 0.85rem 2.5rem;
  border-radius: 0;
}

body.page-about-us .modal .briefing-consent {
  font-size: 11px;
  text-align: center;
  margin-top: 10px;
}

body.page-about-us .modal .briefing-actions {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  margin-bottom: 10px;
}

body.page-about-us .modal .briefing-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

body.page-about-us .modal .briefing-row .briefing-actions {
  margin: 0;
  justify-content: flex-end;
}

body.page-about-us .modal .briefing-row .briefing-consent {
  margin: 0;
  text-align: left;
}

body.page-about-us .logo-font {
  font-family: var(--font-display);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: calc(1em * var(--cinzel-scale));
}

body.page-about-us .navbar-brand {
  min-width: 0;
  gap: 0.8rem !important;
}

body.page-about-us .brand-logo {
  height: auto;
  width: var(--brand-logo-width);
  display: block;
}

body.page-about-us .brand-title {
  width: var(--brand-title-width);
  max-width: 100%;
  height: auto;
  display: block;
}

body.page-about-us .brand-stack {
  width: max-content;
  max-width: var(--brand-title-width);
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

body.page-about-us .brand-stack .small-caps {
  font-size: var(--tagline-size);
  font-family: var(--font-body);
  border-top: 1px solid var(--gold);
  text-align: center;
  padding-top: 8px;
  margin-top: 6px;
}

@media (max-width: 991.98px) {
  body.page-about-us .navbar > .container {
    flex-wrap: wrap;
    align-items: center;
    position: relative;
  }
  body.page-about-us .navbar-brand {
    flex: 1 1 auto;
    max-width: calc(100% - 76px);
  }
  body.page-about-us .navbar-toggler {
    flex: 0 0 auto;
    margin-left: 12px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }
  body.page-about-us .brand-stack .small-caps {
    display: none;
  }
  body.page-about-us .brand-stack {
    max-width: min(100vw - 148px, var(--brand-title-width) * 1.5625);
  }
  body.page-about-us .brand-title {
    width: min(100vw - 148px, var(--brand-title-width) * 1.5625);
  }
  body.page-about-us .brand-logo {
    width: calc(var(--brand-logo-width) * 1.25);
  }
  body.page-about-us .navbar-collapse {
    position: static;
    flex-basis: 100%;
    width: 100%;
    margin-top: 14px;
    padding: 4px 0 12px;
    text-align: right;
    z-index: auto;
  }
  body.page-about-us .navbar-collapse.show {
    display: block;
  }
  body.page-about-us .navbar-nav {
    width: 100%;
    align-items: flex-end;
  }
  body.page-about-us .navbar-nav .nav-link {
    padding-right: 0;
    text-align: right;
  }
  body.page-about-us .navbar-collapse .dropdown-menu {
    position: static;
    min-width: 0;
    margin-top: 0.25rem;
    padding: 0;
    background: transparent;
    border: 0;
    text-align: right;
  }
  body.page-about-us .navbar-collapse .dropdown-item {
    padding-right: 0;
    padding-left: 1rem;
    text-align: right;
  }
  body.page-about-us .navbar-collapse .dropdown-menu li + li .dropdown-item {
    color: var(--gold);
  }
  body.page-about-us .navbar-collapse .dropdown-menu li:first-child .dropdown-item {
    color: #fff;
  }
  body.page-about-us .navbar-collapse .d-flex.ms-lg-3.gap-2 {
    width: 100%;
    justify-content: flex-end;
    margin-top: 1rem;
  }
  body.page-about-us .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  body.page-about-us .capability-card,
  body.page-about-us .modern-security-card,
  body.page-about-us .home-capabilities-card,
  body.page-about-us .bg-white.card-shadow.border,
  body.page-about-us .modal-content {
    padding: 20px !important;
  }
  body.page-about-us footer .container.px-0 {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  body.page-about-us footer .row.gy-4,
  body.page-about-us footer .row.gy-3 {
    justify-content: center;
    text-align: center;
    column-gap: 0 !important;
    margin-left: 0;
    margin-right: 0;
  }
  body.page-about-us footer .row.gy-4 > [class*=col-],
  body.page-about-us footer .row.gy-3 > [class*=col-] {
    display: flex;
    flex-direction: column;
    align-items: center !important;
    text-align: center !important;
  }
  body.page-about-us footer a {
    font-size: 12px;
  }
  body.page-about-us footer .col-lg-4.d-flex.flex-column.text-end.align-items-end,
  body.page-about-us footer .col-lg-4.d-flex.flex-column.text-end.align-items-end.p-0,
  body.page-about-us footer .col-lg-4.d-flex.flex-column.text-end.align-items-end.p-3 {
    align-items: center !important;
    text-align: center !important;
  }
  body.page-about-us footer form.d-flex.align-items-center.gap-2.ms-auto {
    width: 100%;
    max-width: 320px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    justify-content: center;
  }
  body.page-about-us footer form.d-flex.align-items-center.gap-2.ms-auto input {
    width: 100% !important;
    margin-left: 0 !important;
  }
  body.page-about-us footer img[alt="Artemis Global"] {
    margin-top: 30px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  body.page-about-us .brand-stack .small-caps {
    font-size: var(--tagline-size);
  }
}
body.page-about-us .navbar .brand-logo,
body.page-about-us .navbar .brand-title {
  filter: none;
}

body.page-about-us .bg-ink {
  background: var(--ink);
}

body.page-about-us .bg-header {
  background: var(--header-ink);
}

body.page-about-us .text-gold {
  color: var(--gold);
}

body.page-about-us .btn-gold {
  --bs-btn-bg: var(--gold);
  --bs-btn-border-color: #b88f33;
  --bs-btn-color: #111;
  --bs-btn-hover-bg: transparent;
  --bs-btn-hover-border-color: var(--gold);
  --bs-btn-hover-color: var(--gold);
  --bs-btn-active-bg: transparent;
  --bs-btn-active-border-color: var(--gold);
  --bs-btn-active-color: var(--gold);
  --bs-btn-border-width: 1px;
  font-weight: 600;
  background-color: var(--gold);
  background-image: linear-gradient(180deg, var(--gold) 0%, var(--gold-2) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35), 0 6px 12px rgba(0, 0, 0, 0.18);
  text-shadow: none;
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, background-image 0.2s ease, box-shadow 0.2s ease;
}

body.page-about-us .btn-gold:hover,
body.page-about-us .btn-gold:focus-visible {
  background-color: transparent;
  background-image: none;
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: inset 0 0 0 1px rgba(200, 169, 107, 0.28);
}

body.page-about-us .btn-gold:active {
  background-color: transparent;
  background-image: none;
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: inset 0 0 0 1px rgba(200, 169, 107, 0.36);
}

body.page-about-us .btn-outline-gold {
  --bs-btn-color: var(--gold);
  --bs-btn-border-color: var(--gold);
  --bs-btn-hover-bg: var(--gold);
  --bs-btn-hover-border-color: #c79b38;
  --bs-btn-hover-color: #111;
  font-weight: 600;
  background-color: transparent;
}

body.page-about-us .btn-outline-gold:hover,
body.page-about-us .btn-outline-gold:focus-visible {
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.35) 0%, #e2c06b 55%, #b88732 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35), 0 8px 14px rgba(0, 0, 0, 0.2);
}

body.page-about-us .btn {
  font-family: "Open Sans", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.072em;
  font-size: 16px;
  font-weight: 700;
  border-radius: 0;
  box-shadow: none;
}

body.page-about-us .btn:not(.btn-sm):not(.nav-cta) {
  font-size: 15px;
}

body.page-about-us .btn:focus,
body.page-about-us .btn:focus-visible,
body.page-about-us .btn:active {
  box-shadow: none;
}

body.page-about-us .hero .btn.btn-lg:not(.briefing-cta),
body.page-about-us .hero-cta .btn:not(.btn-sm),
body.page-about-us .service-overview .overview-cta-desktop .btn:not(.btn-sm),
body.page-about-us .overview-cta-mobile .btn:not(.btn-sm),
body.page-about-us .sow-hero .btn:not(.btn-sm) {
  padding: 0.65rem 1.75rem;
}

body.page-about-us .btn.btn-gold {
  background-color: var(--gold);
  background-image: linear-gradient(180deg, var(--gold) 0%, var(--gold-2) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35), 0 6px 12px rgba(0, 0, 0, 0.18);
}

body.page-about-us .btn.btn-gold:hover,
body.page-about-us .btn.btn-gold:focus-visible {
  background-color: transparent;
  background-image: none;
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: inset 0 0 0 1px rgba(200, 169, 107, 0.28);
}

body.page-about-us .btn.btn-gold:active {
  background-color: transparent;
  background-image: none;
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: inset 0 0 0 1px rgba(200, 169, 107, 0.36);
}

body.page-about-us .cta-link {
  color: var(--gold);
  text-decoration: underline;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
}

body.page-about-us .cta-link:hover {
  color: #c8a96b;
  text-decoration: none;
}

body.page-about-us .menu-size {
  font-size: 14px;
}

body.page-about-us .marble {
  background: linear-gradient(180deg, #f7f4ec 0%, #ede8dc 100%);
}

body.page-about-us .hero {
  position: relative;
  overflow: hidden;
  color: #c8a96b;
  background: linear-gradient(135deg, rgba(11, 19, 32, 0.92) 0%, rgba(18, 26, 42, 0.92) 45%, rgba(11, 19, 32, 0.92) 100%), url("../images/slider-3.jpg") center 40%/cover no-repeat, radial-gradient(900px 500px at 15% 10%, var(--gold), transparent 60%), radial-gradient(900px 500px at 85% 25%, var(--gold), transparent 60%), linear-gradient(135deg, #0b1320 0%, #121a2a 45%, #0b1320 100%);
}

body.page-about-us .meander {
  height: 14px;
  background: linear-gradient(90deg, transparent 0 10px, var(--gold) 10px 12px, transparent 12px 22px, var(--gold) 22px 24px, transparent 24px 34px, var(--gold) 34px 36px, transparent 36px 46px, var(--gold) 46px 48px, transparent 48px 58px, var(--gold) 58px 60px, transparent 60px 70px);
  opacity: 0.9;
}

body.page-about-us .section-pad {
  padding: 4.5rem 0;
}

body.page-about-us .card-shadow {
  box-shadow: none;
}

body.page-about-us .card-shadow,
body.page-about-us .rounded-4,
body.page-about-us .pillar-item,
body.page-about-us .pillar-card,
body.page-about-us .modern-security-card,
body.page-about-us .home-capabilities-card,
body.page-about-us .capability-card,
body.page-about-us .mobile-flat,
body.page-about-us .modal-content {
  border-radius: 0 !important;
}

body.page-about-us .small-caps {
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: calc(0.78rem * var(--cinzel-scale));
  color: rgba(255, 255, 255, 0.75);
  font-family: var(--font-display);
}

body.page-about-us .icon-badge {
  width: 66px;
  height: 66px;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 66px;
  background: transparent;
  border: none;
  color: var(--gold);
  font-weight: 800;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: calc(1.5em * var(--cinzel-scale));
}

body.page-about-us .contact-icon {
  font-size: 48px;
}

body.page-about-us .contact-icon-email {
  font-size: 69.12px;
}

body.page-about-us .contact-icon-globe {
  font-size: 57.6px;
}

body.page-about-us .contact-icon-phone {
  transform: scale(0.8925);
}

body.page-about-us .creed-icon {
  font-size: calc(5.85em * var(--cinzel-scale));
  width: auto;
  height: auto;
}

body.page-about-us .creed-title {
  font-size: calc(1.5rem * var(--cinzel-scale) * 2.028);
}

body.page-about-us .creed-header {
  gap: 10px;
  margin-top: -40px;
  margin-bottom: calc(1rem - 60px);
}

body.page-about-us .hero-icon {
  font-size: calc(1.5em * var(--cinzel-scale) * 1.6);
}

body.page-about-us .contact-section {
  background: radial-gradient(900px 400px at 90% 0%, rgba(18, 26, 42, 0.08), transparent 60%), linear-gradient(180deg, #ffffff 0%, #f0ece3 100%);
  border-top: 1px solid rgba(18, 26, 42, 0.08);
}

body.page-about-us .eyebrow {
  font-family: var(--font-body);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
}

body.page-about-us .inspired-copy {
  font-size: 16px;
}

body.page-about-us footer a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}

body.page-about-us .navbar-nav {
  gap: 1rem;
}

body.page-about-us .nav-link {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 14px;
}

body.page-about-us .nav-link:hover,
body.page-about-us .nav-link:focus {
  color: var(--gold);
}

body.page-about-us .nav-link.active,
body.page-about-us .nav-link[aria-current=page],
body.page-about-us .dropdown-item.active,
body.page-about-us .dropdown-item[aria-current=page] {
  color: var(--gold);
  background-color: transparent;
}

body.page-about-us .dropdown-menu {
  border-radius: 0;
}

body.page-about-us .navbar .nav-cta {
  font-size: 14px;
  font-weight: 700;
  border-radius: 0;
  white-space: nowrap;
}

body.page-about-us .footer-contractor-badge {
  width: min(100%, 360px);
  max-width: 360px;
  flex: 0 0 auto;
  text-align: left;
}

body.page-about-us .footer-contractor-badge-card {
  width: 100%;
  padding: 12px 14px 14px;
  border: 1px solid var(--gold);
  border-radius: 14px;
  background: linear-gradient(180deg, #141922 0%, #0d1116 100%);
  box-shadow: inset 0 0 0 1px var(--gold);
}

body.page-about-us .footer-contractor-badge-layout {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 14px;
}

body.page-about-us .footer-contractor-badge-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  flex: 1 1 auto;
}

body.page-about-us .footer-contractor-badge-brand-copy {
  min-width: 0;
  flex: 1 1 auto;
  padding-right: 2px;
}

body.page-about-us .footer-contractor-badge-meta {
  min-width: 108px;
  flex: 0 0 auto;
  padding-left: 2px;
}

body.page-about-us .footer-contractor-badge-emblem {
  width: 60px;
  height: auto;
  flex: 0 0 auto;
  display: block;
}

body.page-about-us .footer-contractor-badge-title {
  color: #f4e6be;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  letter-spacing: 0.07em;
  line-height: 1.1;
  white-space: nowrap;
}

body.page-about-us .footer-contractor-badge-copy {
  margin-top: 6px;
  color: #c8a96b;
  font-size: 9px;
  letter-spacing: 0.14em;
  line-height: 1.15;
  text-transform: uppercase;
  font-weight: 700;
}

body.page-about-us .footer-contractor-badge-copy span {
  display: block;
}

body.page-about-us .footer-contractor-badge-copy span + span {
  margin-top: 1px;
}

body.page-about-us .footer-contractor-badge-status {
  margin-top: 4px;
  color: #f7f0de;
  font-size: 12px;
  letter-spacing: 0.04em;
  line-height: 1.05;
  text-transform: uppercase;
  font-weight: 700;
}

body.page-about-us .footer-contractor-badge-divider {
  width: 1px;
  height: auto;
  align-self: stretch;
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold) 100%);
}

body.page-about-us .footer-contractor-badge-heading {
  color: #d7d0bd;
  font-size: 8.5px;
  letter-spacing: 0.12em;
  line-height: 1.25;
  text-transform: uppercase;
  font-weight: 600;
}

body.page-about-us .footer-contractor-badge-heading span {
  display: block;
}

body.page-about-us .footer-contractor-badge-codes {
  margin-top: 10px;
  display: grid;
  gap: 4px;
  color: #f7f0de;
}

body.page-about-us .footer-contractor-badge-code {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: baseline;
  gap: 8px;
}

body.page-about-us .footer-contractor-badge-code-label {
  color: #c8a96b;
  font-size: 9px;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 700;
}

body.page-about-us .footer-contractor-badge-code-value {
  min-width: 0;
  font-size: 10px;
  line-height: 1.1;
  font-weight: 700;
  white-space: nowrap;
  overflow-wrap: normal;
}

body.page-about-us .footer-contractor-badge-code-value--short {
  font-size: 11px;
}

body.page-about-us .footer-link-cluster {
  min-width: 0;
}

body.page-about-us .footer-link-column {
  flex: 0 0 auto;
  min-width: 0;
}

body.page-about-us .footer-capabilities-column {
  min-width: 0;
}

body.page-about-us .footer-capabilities-grid > div {
  min-width: 0;
}

body.page-about-us .footer-main-column,
body.page-about-us .footer-brand-column {
  min-width: 0;
}

body.page-about-us .footer-brand-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

body.page-about-us .footer-wordmark {
  width: 250px;
  height: auto;
  margin-bottom: 10px;
  display: block;
  margin-left: auto;
}

body.page-about-us .footer-copyright {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

body.page-about-us .footer-copyright-break {
  display: block;
}

@media (max-width: 1199.98px) {
  body.page-about-us .footer-link-row {
    justify-content: center;
    row-gap: 24px;
  }
  body.page-about-us .footer-link-row > .col,
  body.page-about-us .footer-link-row > .col-md-auto {
    flex: 0 0 100%;
    max-width: 100%;
    display: flex;
    justify-content: center;
  }
  body.page-about-us .footer-main-column,
  body.page-about-us .footer-brand-column {
    flex: 0 0 100%;
    max-width: 100%;
  }
  body.page-about-us .footer-contractor-badge {
    width: min(100%, 360px);
    max-width: 360px !important;
  }
  body.page-about-us .footer-link-cluster {
    width: 100%;
    padding-top: 0;
    flex-direction: column !important;
    align-items: center !important;
    gap: 24px !important;
    text-align: center;
  }
  body.page-about-us .footer-link-column {
    width: 100%;
    align-items: center;
    text-align: center;
  }
  body.page-about-us .footer-link-column .mt-2,
  body.page-about-us .footer-capabilities-grid {
    align-items: center !important;
  }
  body.page-about-us .footer-brand-column {
    padding-top: 24px !important;
    align-items: center !important;
    text-align: center !important;
  }
  body.page-about-us .footer-brand-block {
    align-items: center;
  }
  body.page-about-us .footer-wordmark {
    margin-left: 0;
    margin-right: 0;
  }
  body.page-about-us .footer-copyright {
    white-space: nowrap;
  }
  body.page-about-us .footer-copyright-break {
    display: inline;
    margin-left: 0.35em;
  }
}
@media (min-width: 1200px) {
  body.page-about-us .footer-link-row {
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
    column-gap: clamp(28px, 3vw, 44px) !important;
  }
  body.page-about-us .footer-link-cluster {
    flex: 1 1 auto;
    display: flex !important;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start !important;
    gap: 50px !important;
    padding-top: 2px;
  }
  body.page-about-us .footer-link-column {
    width: auto;
    flex: 0 0 auto;
  }
  body.page-about-us .footer-link-column .mt-2,
  body.page-about-us .footer-capabilities-grid {
    align-items: flex-start !important;
  }
}
body.page-about-us footer a:hover {
  color: #c8a96b;
  text-decoration: underline;
}

body.page-about-us .form-control:focus,
body.page-about-us .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 0.25rem var(--gold);
}

body.page-about-us .form-control,
body.page-about-us .form-select,
body.page-about-us textarea.form-control {
  border-color: rgba(18, 26, 42, 0.35);
  border-radius: 0;
}

/* capabilities.scss */
body.page-capabilities {
  color: var(--ink);
  font-family: var(--font-body);
  background: var(--ink);
  overflow-x: hidden;
}

body.page-capabilities .gap-2 {
  gap: 0.75rem !important;
}

body.page-capabilities h1,
body.page-capabilities h2,
body.page-capabilities h3,
body.page-capabilities h4,
body.page-capabilities h5,
body.page-capabilities h6 {
  font-family: var(--font-display);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

body.page-capabilities h5,
body.page-capabilities .h5 {
  font-weight: 700;
}

body.page-capabilities h1.display-5 {
  font-size: calc(3rem * var(--cinzel-scale) - 2px);
}

body.page-capabilities h2.display-6 {
  font-size: calc(2.5rem * var(--cinzel-scale));
}

body.page-capabilities h2.h5 {
  font-size: calc(1.25rem * var(--cinzel-scale));
}

body.page-capabilities h3.h4 {
  font-size: calc(1.5rem * var(--cinzel-scale));
}

body.page-capabilities .modal .modal-content h3.h4 {
  font-size: 28px;
}

body.page-capabilities .briefing-cta {
  font-size: 15px;
  padding: 0.85rem 2.5rem;
  border-radius: 0;
}

body.page-capabilities .modal .briefing-consent {
  font-size: 11px;
  text-align: center;
  margin-top: 10px;
}

body.page-capabilities .modal .briefing-actions {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  margin-bottom: 10px;
}

body.page-capabilities .modal .briefing-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

body.page-capabilities .modal .briefing-row .briefing-actions {
  margin: 0;
  justify-content: flex-end;
}

body.page-capabilities .modal .briefing-row .briefing-consent {
  margin: 0;
  text-align: left;
}

body.page-capabilities .logo-font {
  font-family: var(--font-display);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: calc(1em * var(--cinzel-scale));
}

body.page-capabilities .navbar-brand {
  min-width: 0;
  gap: 0.8rem !important;
}

body.page-capabilities .brand-logo {
  height: auto;
  width: var(--brand-logo-width);
  display: block;
}

body.page-capabilities .brand-title {
  width: var(--brand-title-width);
  max-width: 100%;
  height: auto;
  display: block;
}

body.page-capabilities .brand-stack {
  width: max-content;
  max-width: var(--brand-title-width);
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

body.page-capabilities .brand-stack .small-caps {
  font-size: var(--tagline-size);
  font-family: var(--font-body);
  border-top: 1px solid var(--gold);
  text-align: center;
  padding-top: 8px;
  margin-top: 6px;
}

@media (max-width: 991.98px) {
  body.page-capabilities .navbar > .container {
    flex-wrap: wrap;
    align-items: center;
    position: relative;
  }
  body.page-capabilities .navbar-brand {
    flex: 1 1 auto;
    max-width: calc(100% - 76px);
  }
  body.page-capabilities .navbar-toggler {
    flex: 0 0 auto;
    margin-left: 12px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }
  body.page-capabilities .brand-stack .small-caps {
    display: none;
  }
  body.page-capabilities .brand-stack {
    max-width: min(100vw - 148px, var(--brand-title-width) * 1.5625);
  }
  body.page-capabilities .brand-title {
    width: min(100vw - 148px, var(--brand-title-width) * 1.5625);
  }
  body.page-capabilities .brand-logo {
    width: calc(var(--brand-logo-width) * 1.25);
  }
  body.page-capabilities .navbar-collapse {
    position: static;
    flex-basis: 100%;
    width: 100%;
    margin-top: 14px;
    padding: 4px 0 12px;
    text-align: right;
    z-index: auto;
  }
  body.page-capabilities .navbar-collapse.show {
    display: block;
  }
  body.page-capabilities .navbar-nav {
    width: 100%;
    align-items: flex-end;
  }
  body.page-capabilities .navbar-nav .nav-link {
    padding-right: 0;
    text-align: right;
  }
  body.page-capabilities .navbar-collapse .dropdown-menu {
    position: static;
    min-width: 0;
    margin-top: 0.25rem;
    padding: 0;
    background: transparent;
    border: 0;
    text-align: right;
  }
  body.page-capabilities .navbar-collapse .dropdown-item {
    padding-right: 0;
    padding-left: 1rem;
    text-align: right;
  }
  body.page-capabilities .navbar-collapse .dropdown-menu li + li .dropdown-item {
    color: var(--gold);
  }
  body.page-capabilities .navbar-collapse .dropdown-menu li:first-child .dropdown-item {
    color: #fff;
  }
  body.page-capabilities .navbar-collapse .d-flex.ms-lg-3.gap-2 {
    width: 100%;
    justify-content: flex-end;
    margin-top: 1rem;
  }
  body.page-capabilities .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  body.page-capabilities #services > .container.section-pad {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  body.page-capabilities .capability-card,
  body.page-capabilities .modern-security-card,
  body.page-capabilities .home-capabilities-card,
  body.page-capabilities .bg-white.card-shadow.border,
  body.page-capabilities .modal-content {
    padding: 20px !important;
  }
  body.page-capabilities #services > .container.section-pad > .row,
  body.page-capabilities #services .row.g-3 {
    margin-left: 0 !important;
    margin-right: 0 !important;
    --bs-gutter-x: 0;
  }
  body.page-capabilities footer .container.px-0 {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  body.page-capabilities footer .row.gy-4,
  body.page-capabilities footer .row.gy-3 {
    justify-content: center;
    text-align: center;
    column-gap: 0 !important;
    margin-left: 0;
    margin-right: 0;
  }
  body.page-capabilities footer .row.gy-4 > [class*=col-],
  body.page-capabilities footer .row.gy-3 > [class*=col-] {
    display: flex;
    flex-direction: column;
    align-items: center !important;
    text-align: center !important;
  }
  body.page-capabilities footer a {
    font-size: 12px;
  }
  body.page-capabilities footer .col-lg-4.d-flex.flex-column.text-end.align-items-end,
  body.page-capabilities footer .col-lg-4.d-flex.flex-column.text-end.align-items-end.p-0,
  body.page-capabilities footer .col-lg-4.d-flex.flex-column.text-end.align-items-end.p-3 {
    align-items: center !important;
    text-align: center !important;
  }
  body.page-capabilities footer form.d-flex.align-items-center.gap-2.ms-auto {
    width: 100%;
    max-width: 320px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    justify-content: center;
  }
  body.page-capabilities footer form.d-flex.align-items-center.gap-2.ms-auto input {
    width: 100% !important;
    margin-left: 0 !important;
  }
  body.page-capabilities footer img[alt="Artemis Global"] {
    margin-top: 30px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  body.page-capabilities .brand-stack .small-caps {
    font-size: var(--tagline-size);
  }
}
body.page-capabilities .navbar .brand-logo,
body.page-capabilities .navbar .brand-title {
  filter: none;
}

body.page-capabilities .bg-ink {
  background: var(--ink);
}

body.page-capabilities .bg-header {
  background: var(--header-ink);
}

body.page-capabilities .text-gold {
  color: var(--gold);
}

body.page-capabilities .btn-gold {
  --bs-btn-bg: var(--gold);
  --bs-btn-border-color: #b88f33;
  --bs-btn-color: #111;
  --bs-btn-hover-bg: transparent;
  --bs-btn-hover-border-color: var(--gold);
  --bs-btn-hover-color: var(--gold);
  --bs-btn-active-bg: transparent;
  --bs-btn-active-border-color: var(--gold);
  --bs-btn-active-color: var(--gold);
  --bs-btn-border-width: 1px;
  font-weight: 600;
  background-color: var(--gold);
  background-image: linear-gradient(180deg, var(--gold) 0%, var(--gold-2) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35), 0 6px 12px rgba(0, 0, 0, 0.18);
  text-shadow: none;
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, background-image 0.2s ease, box-shadow 0.2s ease;
}

body.page-capabilities .btn-gold:hover,
body.page-capabilities .btn-gold:focus-visible {
  background-color: transparent;
  background-image: none;
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: inset 0 0 0 1px rgba(200, 169, 107, 0.28);
}

body.page-capabilities .btn-gold:active {
  background-color: transparent;
  background-image: none;
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: inset 0 0 0 1px rgba(200, 169, 107, 0.36);
}

body.page-capabilities .btn-outline-gold {
  --bs-btn-color: var(--gold);
  --bs-btn-border-color: var(--gold);
  --bs-btn-hover-bg: var(--gold);
  --bs-btn-hover-border-color: #c79b38;
  --bs-btn-hover-color: #111;
  font-weight: 600;
  background-color: transparent;
}

body.page-capabilities .btn-outline-gold:hover,
body.page-capabilities .btn-outline-gold:focus-visible {
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.35) 0%, #e2c06b 55%, #b88732 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35), 0 8px 14px rgba(0, 0, 0, 0.2);
}

body.page-capabilities .btn {
  font-family: "Open Sans", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.072em;
  font-size: 16px;
  font-weight: 700;
  border-radius: 0;
  box-shadow: none;
}

body.page-capabilities .btn:not(.btn-sm):not(.nav-cta) {
  font-size: 15px;
}

body.page-capabilities .btn:focus,
body.page-capabilities .btn:focus-visible,
body.page-capabilities .btn:active {
  box-shadow: none;
}

body.page-capabilities .hero .btn.btn-lg:not(.briefing-cta),
body.page-capabilities .hero-cta .btn:not(.btn-sm),
body.page-capabilities .service-overview .overview-cta-desktop .btn:not(.btn-sm),
body.page-capabilities .overview-cta-mobile .btn:not(.btn-sm),
body.page-capabilities .sow-hero .btn:not(.btn-sm) {
  padding: 0.65rem 1.75rem;
}

body.page-capabilities .btn.btn-gold {
  background-color: var(--gold);
  background-image: linear-gradient(180deg, var(--gold) 0%, var(--gold-2) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35), 0 6px 12px rgba(0, 0, 0, 0.18);
}

body.page-capabilities .btn.btn-gold:hover,
body.page-capabilities .btn.btn-gold:focus-visible {
  background-color: transparent;
  background-image: none;
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: inset 0 0 0 1px rgba(200, 169, 107, 0.28);
}

body.page-capabilities .btn.btn-gold:active {
  background-color: transparent;
  background-image: none;
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: inset 0 0 0 1px rgba(200, 169, 107, 0.36);
}

body.page-capabilities .cta-link {
  color: var(--gold);
  text-decoration: underline;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
}

body.page-capabilities .cta-link:hover {
  color: #c8a96b;
  text-decoration: none;
}

body.page-capabilities .menu-size {
  font-size: 14px;
}

body.page-capabilities .marble {
  background: linear-gradient(180deg, #f7f4ec 0%, #ede8dc 100%);
}

body.page-capabilities .hero {
  position: relative;
  overflow: hidden;
  color: #c8a96b;
  background: linear-gradient(135deg, rgba(11, 19, 32, 0.92) 0%, rgba(18, 26, 42, 0.92) 45%, rgba(11, 19, 32, 0.92) 100%), url("../images/slider-3.jpg") center 40%/cover no-repeat, radial-gradient(900px 500px at 15% 10%, var(--gold), transparent 60%), radial-gradient(900px 500px at 85% 25%, var(--gold), transparent 60%), linear-gradient(135deg, #0b1320 0%, #121a2a 45%, #0b1320 100%);
}

body.page-capabilities .hero-slab .creed-header {
  margin-top: 0;
  margin-bottom: 1rem;
}

body.page-capabilities .meander {
  height: 14px;
  background: linear-gradient(90deg, transparent 0 10px, var(--gold) 10px 12px, transparent 12px 22px, var(--gold) 22px 24px, transparent 24px 34px, var(--gold) 34px 36px, transparent 36px 46px, var(--gold) 46px 48px, transparent 48px 58px, var(--gold) 58px 60px, transparent 60px 70px);
  opacity: 0.9;
}

body.page-capabilities .section-pad {
  padding: 4.5rem 0;
}

body.page-capabilities .card-shadow {
  box-shadow: none;
}

body.page-capabilities .card-shadow,
body.page-capabilities .rounded-4,
body.page-capabilities .pillar-item,
body.page-capabilities .pillar-card,
body.page-capabilities .modern-security-card,
body.page-capabilities .home-capabilities-card,
body.page-capabilities .capability-card,
body.page-capabilities .mobile-flat,
body.page-capabilities .modal-content {
  border-radius: 0 !important;
}

body.page-capabilities .small-caps {
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: calc(0.78rem * var(--cinzel-scale));
  color: rgba(255, 255, 255, 0.75);
  font-family: var(--font-display);
}

body.page-capabilities .icon-badge {
  width: 66px;
  height: 66px;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 66px;
  background: transparent;
  border: none;
  color: var(--gold);
  font-weight: 800;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: calc(1.5em * var(--cinzel-scale));
}

body.page-capabilities .icon-badge img,
body.page-capabilities .capability-glyph img {
  width: 50px;
  height: auto;
  object-fit: contain;
  display: block;
}

body.page-capabilities .capability-glyph {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.9rem;
  line-height: 1;
  -webkit-clip-path: none;
  clip-path: none;
}

body.page-capabilities .capability-card {
  text-align: center;
  padding-top: 10px;
}

body.page-capabilities .capability-card .fw-semibold {
  justify-content: center;
}

body.page-capabilities .capability-col {
  flex: 0 0 100%;
  max-width: 100%;
}

body.page-capabilities .capability-list {
  margin: 12px 0 0;
  padding: 0;
  list-style: disc;
  list-style-position: inside;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.875rem;
  line-height: 1.5;
  text-align: left;
}

body.page-capabilities .capability-list li + li {
  margin-top: 6px;
}

body.page-capabilities .capability-body {
  line-height: 27px;
  padding-top: 8px;
  padding-bottom: 8px;
}

body.page-capabilities .capabilities-summary {
  max-width: 100%;
  line-height: 24px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 992px) {
  body.page-capabilities .capabilities-summary {
    max-width: 80%;
  }
}
@media (min-width: 768px) {
  body.page-capabilities .capability-col {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (min-width: 1200px) {
  body.page-capabilities .capability-col {
    flex: 0 0 20%;
    max-width: 20%;
  }
}
body.page-capabilities .capability-cta {
  margin-top: 1rem;
  margin-bottom: 18px;
  font-size: 14px;
  font-weight: 600;
}

body.page-capabilities .capability-cta a {
  color: var(--gold);
  text-decoration: none;
}

body.page-capabilities .capability-cta a:hover,
body.page-capabilities .capability-cta a:focus-visible {
  color: var(--gold-2);
  text-decoration: none;
}

body.page-capabilities .contact-icon {
  font-size: 48px;
}

body.page-capabilities .contact-icon-email {
  font-size: 69.12px;
}

body.page-capabilities .contact-icon-globe {
  font-size: 57.6px;
}

body.page-capabilities .contact-icon-phone {
  transform: scale(0.8925);
}

body.page-capabilities .creed-icon {
  font-size: calc(5.85em * var(--cinzel-scale));
  width: auto;
  height: auto;
}

body.page-capabilities .creed-title {
  font-size: calc(1.5rem * var(--cinzel-scale) * 2.028);
}

body.page-capabilities .creed-header {
  gap: 10px;
  margin-top: -40px;
  margin-bottom: calc(1rem - 60px);
}

body.page-capabilities .hero-icon {
  font-size: calc(1.5em * var(--cinzel-scale) * 1.6);
}

body.page-capabilities .contact-section {
  background: radial-gradient(900px 400px at 90% 0%, rgba(18, 26, 42, 0.08), transparent 60%), linear-gradient(180deg, #ffffff 0%, #f0ece3 100%);
  border-top: 1px solid rgba(18, 26, 42, 0.08);
}

body.page-capabilities .eyebrow {
  font-family: var(--font-body);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
}

body.page-capabilities .inspired-copy {
  font-size: 16px;
}

body.page-capabilities footer a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}

body.page-capabilities .navbar-nav {
  gap: 1rem;
}

body.page-capabilities .nav-link {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 14px;
}

body.page-capabilities .nav-link:hover,
body.page-capabilities .nav-link:focus {
  color: var(--gold);
}

body.page-capabilities .nav-link.active,
body.page-capabilities .nav-link[aria-current=page],
body.page-capabilities .dropdown-item.active,
body.page-capabilities .dropdown-item[aria-current=page] {
  color: var(--gold);
  background-color: transparent;
}

body.page-capabilities .dropdown-menu {
  border-radius: 0;
}

body.page-capabilities .navbar .nav-cta {
  font-size: 14px;
  font-weight: 700;
  border-radius: 0;
  white-space: nowrap;
}

body.page-capabilities .footer-contractor-badge {
  width: min(100%, 360px);
  max-width: 360px;
  flex: 0 0 auto;
  text-align: left;
}

body.page-capabilities .footer-contractor-badge-card {
  width: 100%;
  padding: 12px 14px 14px;
  border: 1px solid var(--gold);
  border-radius: 14px;
  background: linear-gradient(180deg, #141922 0%, #0d1116 100%);
  box-shadow: inset 0 0 0 1px var(--gold);
}

body.page-capabilities .footer-contractor-badge-layout {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 14px;
}

body.page-capabilities .footer-contractor-badge-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  flex: 1 1 auto;
}

body.page-capabilities .footer-contractor-badge-brand-copy {
  min-width: 0;
  flex: 1 1 auto;
  padding-right: 2px;
}

body.page-capabilities .footer-contractor-badge-meta {
  min-width: 108px;
  flex: 0 0 auto;
  padding-left: 2px;
}

body.page-capabilities .footer-contractor-badge-emblem {
  width: 60px;
  height: auto;
  flex: 0 0 auto;
  display: block;
}

body.page-capabilities .footer-contractor-badge-title {
  color: #f4e6be;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  letter-spacing: 0.07em;
  line-height: 1.1;
  white-space: nowrap;
}

body.page-capabilities .footer-contractor-badge-copy {
  margin-top: 6px;
  color: #c8a96b;
  font-size: 9px;
  letter-spacing: 0.14em;
  line-height: 1.15;
  text-transform: uppercase;
  font-weight: 700;
}

body.page-capabilities .footer-contractor-badge-copy span {
  display: block;
}

body.page-capabilities .footer-contractor-badge-copy span + span {
  margin-top: 1px;
}

body.page-capabilities .footer-contractor-badge-status {
  margin-top: 4px;
  color: #f7f0de;
  font-size: 12px;
  letter-spacing: 0.04em;
  line-height: 1.05;
  text-transform: uppercase;
  font-weight: 700;
}

body.page-capabilities .footer-contractor-badge-divider {
  width: 1px;
  height: auto;
  align-self: stretch;
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold) 100%);
}

body.page-capabilities .footer-contractor-badge-heading {
  color: #d7d0bd;
  font-size: 8.5px;
  letter-spacing: 0.12em;
  line-height: 1.25;
  text-transform: uppercase;
  font-weight: 600;
}

body.page-capabilities .footer-contractor-badge-heading span {
  display: block;
}

body.page-capabilities .footer-contractor-badge-codes {
  margin-top: 10px;
  display: grid;
  gap: 4px;
  color: #f7f0de;
}

body.page-capabilities .footer-contractor-badge-code {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: baseline;
  gap: 8px;
}

body.page-capabilities .footer-contractor-badge-code-label {
  color: #c8a96b;
  font-size: 9px;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 700;
}

body.page-capabilities .footer-contractor-badge-code-value {
  min-width: 0;
  font-size: 10px;
  line-height: 1.1;
  font-weight: 700;
  white-space: nowrap;
  overflow-wrap: normal;
}

body.page-capabilities .footer-contractor-badge-code-value--short {
  font-size: 11px;
}

body.page-capabilities .footer-link-cluster {
  min-width: 0;
}

body.page-capabilities .footer-link-column {
  flex: 0 0 auto;
  min-width: 0;
}

body.page-capabilities .footer-capabilities-column {
  min-width: 0;
}

body.page-capabilities .footer-capabilities-grid > div {
  min-width: 0;
}

body.page-capabilities .footer-main-column,
body.page-capabilities .footer-brand-column {
  min-width: 0;
}

body.page-capabilities .footer-brand-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

body.page-capabilities .footer-wordmark {
  width: 250px;
  height: auto;
  margin-bottom: 10px;
  display: block;
  margin-left: auto;
}

body.page-capabilities .footer-copyright {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

body.page-capabilities .footer-copyright-break {
  display: block;
}

@media (max-width: 1199.98px) {
  body.page-capabilities .footer-link-row {
    justify-content: center;
    row-gap: 24px;
  }
  body.page-capabilities .footer-link-row > .col,
  body.page-capabilities .footer-link-row > .col-md-auto {
    flex: 0 0 100%;
    max-width: 100%;
    display: flex;
    justify-content: center;
  }
  body.page-capabilities .footer-main-column,
  body.page-capabilities .footer-brand-column {
    flex: 0 0 100%;
    max-width: 100%;
  }
  body.page-capabilities .footer-contractor-badge {
    width: min(100%, 360px);
    max-width: 360px !important;
  }
  body.page-capabilities .footer-link-cluster {
    width: 100%;
    padding-top: 0;
    flex-direction: column !important;
    align-items: center !important;
    gap: 24px !important;
    text-align: center;
  }
  body.page-capabilities .footer-link-column {
    width: 100%;
    align-items: center;
    text-align: center;
  }
  body.page-capabilities .footer-link-column .mt-2,
  body.page-capabilities .footer-capabilities-grid {
    align-items: center !important;
  }
  body.page-capabilities .footer-brand-column {
    padding-top: 24px !important;
    align-items: center !important;
    text-align: center !important;
  }
  body.page-capabilities .footer-brand-block {
    align-items: center;
  }
  body.page-capabilities .footer-wordmark {
    margin-left: 0;
    margin-right: 0;
  }
  body.page-capabilities .footer-copyright {
    white-space: nowrap;
  }
  body.page-capabilities .footer-copyright-break {
    display: inline;
    margin-left: 0.35em;
  }
}
@media (min-width: 1200px) {
  body.page-capabilities .footer-link-row {
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
    column-gap: clamp(28px, 3vw, 44px) !important;
  }
  body.page-capabilities .footer-link-cluster {
    flex: 1 1 auto;
    display: flex !important;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start !important;
    gap: 50px !important;
    padding-top: 2px;
  }
  body.page-capabilities .footer-link-column {
    width: auto;
    flex: 0 0 auto;
  }
  body.page-capabilities .footer-link-column .mt-2,
  body.page-capabilities .footer-capabilities-grid {
    align-items: flex-start !important;
  }
}
body.page-capabilities footer a:hover {
  color: #c8a96b;
  text-decoration: underline;
}

body.page-capabilities .form-control:focus,
body.page-capabilities .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 0.25rem var(--gold);
}

body.page-capabilities .form-control,
body.page-capabilities .form-select,
body.page-capabilities textarea.form-control {
  border-color: rgba(18, 26, 42, 0.35);
  border-radius: 0;
}

/* contact.scss */
body.page-contact {
  color: var(--ink);
  font-family: var(--font-body);
  background: var(--ink);
  overflow-x: hidden;
}

body.page-contact .gap-2 {
  gap: 0.75rem !important;
}

body.page-contact h1,
body.page-contact h2,
body.page-contact h3,
body.page-contact h4,
body.page-contact h5,
body.page-contact h6 {
  font-family: var(--font-display);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

body.page-contact h5,
body.page-contact .h5 {
  font-weight: 700;
}

body.page-contact h1.display-5 {
  font-size: calc(3rem * var(--cinzel-scale) - 2px);
}

body.page-contact h1.display-6,
body.page-contact h2.display-6 {
  font-size: calc(2.5rem * var(--cinzel-scale));
}

body.page-contact h2.h5 {
  font-size: calc(1.25rem * var(--cinzel-scale));
}

body.page-contact h3.h4 {
  font-size: calc(1.5rem * var(--cinzel-scale));
}

body.page-contact .modal .modal-content h3.h4 {
  font-size: 28px;
}

body.page-contact .briefing-cta {
  font-size: 15px;
  padding: 0.85rem 2.5rem;
  border-radius: 0;
}

body.page-contact .modal .briefing-consent {
  font-size: 11px;
  text-align: center;
  margin-top: 10px;
}

body.page-contact .modal .briefing-actions {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  margin-bottom: 10px;
}

body.page-contact .modal .briefing-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

body.page-contact .modal .briefing-row .briefing-actions {
  margin: 0;
  justify-content: flex-end;
}

body.page-contact .modal .briefing-row .briefing-consent {
  margin: 0;
  text-align: left;
}

body.page-contact .logo-font {
  font-family: var(--font-display);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: calc(1em * var(--cinzel-scale));
}

body.page-contact .navbar-brand {
  min-width: 0;
  gap: 0.8rem !important;
}

body.page-contact .brand-logo {
  height: auto;
  width: var(--brand-logo-width);
  display: block;
}

body.page-contact .brand-title {
  width: var(--brand-title-width);
  max-width: 100%;
  height: auto;
  display: block;
}

body.page-contact .brand-stack {
  width: max-content;
  max-width: var(--brand-title-width);
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

body.page-contact .brand-stack .small-caps {
  font-size: var(--tagline-size);
  font-family: var(--font-body);
  border-top: 1px solid var(--gold);
  text-align: center;
  padding-top: 8px;
  margin-top: 6px;
}

@media (max-width: 991.98px) {
  body.page-contact .navbar > .container {
    flex-wrap: wrap;
    align-items: center;
    position: relative;
  }
  body.page-contact .navbar-brand {
    flex: 1 1 auto;
    max-width: calc(100% - 76px);
  }
  body.page-contact .navbar-toggler {
    flex: 0 0 auto;
    margin-left: 12px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }
  body.page-contact .brand-stack .small-caps {
    display: none;
  }
  body.page-contact .brand-stack {
    max-width: min(100vw - 148px, var(--brand-title-width) * 1.5625);
  }
  body.page-contact .brand-title {
    width: min(100vw - 148px, var(--brand-title-width) * 1.5625);
  }
  body.page-contact .brand-logo {
    width: calc(var(--brand-logo-width) * 1.25);
  }
  body.page-contact .navbar-collapse {
    position: static;
    flex-basis: 100%;
    width: 100%;
    margin-top: 14px;
    padding: 4px 0 12px;
    text-align: right;
    z-index: auto;
  }
  body.page-contact .navbar-collapse.show {
    display: block;
  }
  body.page-contact .navbar-nav {
    width: 100%;
    align-items: flex-end;
  }
  body.page-contact .navbar-nav .nav-link {
    padding-right: 0;
    text-align: right;
  }
  body.page-contact .navbar-collapse .dropdown-menu {
    position: static;
    min-width: 0;
    margin-top: 0.25rem;
    padding: 0;
    background: transparent;
    border: 0;
    text-align: right;
  }
  body.page-contact .navbar-collapse .dropdown-item {
    padding-right: 0;
    padding-left: 1rem;
    text-align: right;
  }
  body.page-contact .navbar-collapse .dropdown-menu li + li .dropdown-item {
    color: var(--gold);
  }
  body.page-contact .navbar-collapse .dropdown-menu li:first-child .dropdown-item {
    color: #fff;
  }
  body.page-contact .navbar-collapse .d-flex.ms-lg-3.gap-2 {
    width: 100%;
    justify-content: flex-end;
    margin-top: 1rem;
  }
  body.page-contact .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  body.page-contact .capability-card,
  body.page-contact .modern-security-card,
  body.page-contact .home-capabilities-card,
  body.page-contact .bg-white.card-shadow.border,
  body.page-contact .modal-content {
    padding: 20px !important;
  }
  body.page-contact footer .container.px-0 {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  body.page-contact footer .row.gy-4,
  body.page-contact footer .row.gy-3 {
    justify-content: center;
    text-align: center;
    column-gap: 0 !important;
    margin-left: 0;
    margin-right: 0;
  }
  body.page-contact footer .row.gy-4 > [class*=col-],
  body.page-contact footer .row.gy-3 > [class*=col-] {
    display: flex;
    flex-direction: column;
    align-items: center !important;
    text-align: center !important;
  }
  body.page-contact footer a {
    font-size: 12px;
  }
  body.page-contact footer .col-lg-4.d-flex.flex-column.text-end.align-items-end,
  body.page-contact footer .col-lg-4.d-flex.flex-column.text-end.align-items-end.p-0,
  body.page-contact footer .col-lg-4.d-flex.flex-column.text-end.align-items-end.p-3 {
    align-items: center !important;
    text-align: center !important;
  }
  body.page-contact footer form.d-flex.align-items-center.gap-2.ms-auto {
    width: 100%;
    max-width: 320px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    justify-content: center;
  }
  body.page-contact footer form.d-flex.align-items-center.gap-2.ms-auto input {
    width: 100% !important;
    margin-left: 0 !important;
  }
  body.page-contact footer img[alt="Artemis Global"] {
    margin-top: 30px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  body.page-contact .brand-stack .small-caps {
    font-size: var(--tagline-size);
  }
}
body.page-contact .navbar .brand-logo,
body.page-contact .navbar .brand-title {
  filter: none;
}

body.page-contact .bg-ink {
  background: var(--ink);
}

body.page-contact .bg-header {
  background: var(--header-ink);
}

body.page-contact .text-gold {
  color: var(--gold);
}

body.page-contact .btn-gold {
  --bs-btn-bg: var(--gold);
  --bs-btn-border-color: #b88f33;
  --bs-btn-color: #111;
  --bs-btn-hover-bg: transparent;
  --bs-btn-hover-border-color: var(--gold);
  --bs-btn-hover-color: var(--gold);
  --bs-btn-active-bg: transparent;
  --bs-btn-active-border-color: var(--gold);
  --bs-btn-active-color: var(--gold);
  --bs-btn-border-width: 1px;
  font-weight: 600;
  background-color: var(--gold);
  background-image: linear-gradient(180deg, var(--gold) 0%, var(--gold-2) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35), 0 6px 12px rgba(0, 0, 0, 0.18);
  text-shadow: none;
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, background-image 0.2s ease, box-shadow 0.2s ease;
}

body.page-contact .btn-gold:hover,
body.page-contact .btn-gold:focus-visible {
  background-color: transparent;
  background-image: none;
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: inset 0 0 0 1px rgba(200, 169, 107, 0.28);
}

body.page-contact .btn-gold:active {
  background-color: transparent;
  background-image: none;
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: inset 0 0 0 1px rgba(200, 169, 107, 0.36);
}

body.page-contact .btn-outline-gold {
  --bs-btn-color: var(--gold);
  --bs-btn-border-color: var(--gold);
  --bs-btn-hover-bg: var(--gold);
  --bs-btn-hover-border-color: #c79b38;
  --bs-btn-hover-color: #111;
  font-weight: 600;
  background-color: transparent;
}

body.page-contact .btn-outline-gold:hover,
body.page-contact .btn-outline-gold:focus-visible {
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.35) 0%, #e2c06b 55%, #b88732 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35), 0 8px 14px rgba(0, 0, 0, 0.2);
}

body.page-contact .btn {
  font-family: "Open Sans", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.072em;
  font-size: 16px;
  font-weight: 700;
  border-radius: 0;
  box-shadow: none;
}

body.page-contact .btn:not(.btn-sm):not(.nav-cta) {
  font-size: 15px;
}

body.page-contact .btn:focus,
body.page-contact .btn:focus-visible,
body.page-contact .btn:active {
  box-shadow: none;
}

body.page-contact .hero .btn.btn-lg:not(.briefing-cta),
body.page-contact .hero-cta .btn:not(.btn-sm),
body.page-contact .service-overview .overview-cta-desktop .btn:not(.btn-sm),
body.page-contact .overview-cta-mobile .btn:not(.btn-sm),
body.page-contact .sow-hero .btn:not(.btn-sm) {
  padding: 0.65rem 1.75rem;
}

body.page-contact .btn.btn-gold {
  background-color: var(--gold);
  background-image: linear-gradient(180deg, var(--gold) 0%, var(--gold-2) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35), 0 6px 12px rgba(0, 0, 0, 0.18);
}

body.page-contact .btn.btn-gold:hover,
body.page-contact .btn.btn-gold:focus-visible {
  background-color: transparent;
  background-image: none;
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: inset 0 0 0 1px rgba(200, 169, 107, 0.28);
}

body.page-contact .btn.btn-gold:active {
  background-color: transparent;
  background-image: none;
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: inset 0 0 0 1px rgba(200, 169, 107, 0.36);
}

body.page-contact .cta-link {
  color: var(--gold);
  text-decoration: underline;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
}

body.page-contact .cta-link:hover {
  color: #c8a96b;
  text-decoration: none;
}

body.page-contact .menu-size {
  font-size: 14px;
}

body.page-contact .marble {
  background: linear-gradient(180deg, #f7f4ec 0%, #ede8dc 100%);
}

body.page-contact .hero {
  position: relative;
  overflow: hidden;
  color: #c8a96b;
  background: linear-gradient(135deg, rgba(11, 19, 32, 0.92) 0%, rgba(18, 26, 42, 0.92) 45%, rgba(11, 19, 32, 0.92) 100%), url("../images/slider-3.jpg") center 40%/cover no-repeat, radial-gradient(900px 500px at 15% 10%, var(--gold), transparent 60%), radial-gradient(900px 500px at 85% 25%, var(--gold), transparent 60%), linear-gradient(135deg, #0b1320 0%, #121a2a 45%, #0b1320 100%);
}

body.page-contact .meander {
  height: 14px;
  background: linear-gradient(90deg, transparent 0 10px, var(--gold) 10px 12px, transparent 12px 22px, var(--gold) 22px 24px, transparent 24px 34px, var(--gold) 34px 36px, transparent 36px 46px, var(--gold) 46px 48px, transparent 48px 58px, var(--gold) 58px 60px, transparent 60px 70px);
  opacity: 0.9;
}

body.page-contact .section-pad {
  padding: 4.5rem 0;
}

body.page-contact .card-shadow {
  box-shadow: none;
}

body.page-contact .card-shadow,
body.page-contact .rounded-4,
body.page-contact .pillar-item,
body.page-contact .pillar-card,
body.page-contact .modern-security-card,
body.page-contact .home-capabilities-card,
body.page-contact .capability-card,
body.page-contact .mobile-flat,
body.page-contact .modal-content {
  border-radius: 0 !important;
}

body.page-contact .small-caps {
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: calc(0.78rem * var(--cinzel-scale));
  color: rgba(255, 255, 255, 0.75);
  font-family: var(--font-display);
}

body.page-contact .icon-badge {
  width: 66px;
  height: 66px;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 66px;
  background: transparent;
  border: none;
  color: var(--gold);
  font-weight: 800;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: calc(1.5em * var(--cinzel-scale));
}

body.page-contact .contact-icon {
  font-size: 48px;
}

body.page-contact .contact-icon-email {
  font-size: 69.12px;
}

body.page-contact .contact-icon-globe {
  font-size: 57.6px;
  font-size: 0;
}

body.page-contact .contact-icon-globe svg {
  width: 46px;
  height: 46px;
  display: block;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
}

body.page-contact .contact-icon-phone {
  transform: scale(0.8925);
}

body.page-contact .creed-icon {
  font-size: calc(5.85em * var(--cinzel-scale));
  width: auto;
  height: auto;
}

body.page-contact .creed-title {
  font-size: calc(1.5rem * var(--cinzel-scale) * 2.028);
}

body.page-contact .creed-header {
  gap: 10px;
  margin-top: -40px;
  margin-bottom: calc(1rem - 60px);
}

body.page-contact .hero-icon {
  font-size: calc(1.5em * var(--cinzel-scale) * 1.6);
}

body.page-contact .contact-section {
  background: radial-gradient(900px 400px at 90% 0%, rgba(18, 26, 42, 0.08), transparent 60%), linear-gradient(180deg, #ffffff 0%, #f0ece3 100%);
  border-top: 1px solid rgba(18, 26, 42, 0.08);
}

body.page-contact .eyebrow {
  font-family: var(--font-body);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
}

body.page-contact .inspired-copy {
  font-size: 16px;
}

body.page-contact footer a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}

body.page-contact .navbar-nav {
  gap: 1rem;
}

body.page-contact .nav-link {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 14px;
}

body.page-contact .nav-link:hover,
body.page-contact .nav-link:focus {
  color: var(--gold);
}

body.page-contact .nav-link.active,
body.page-contact .nav-link[aria-current=page],
body.page-contact .dropdown-item.active,
body.page-contact .dropdown-item[aria-current=page] {
  color: var(--gold);
  background-color: transparent;
}

body.page-contact .dropdown-menu {
  border-radius: 0;
}

body.page-contact .navbar .nav-cta {
  font-size: 14px;
  font-weight: 700;
  border-radius: 0;
  white-space: nowrap;
}

body.page-contact .footer-contractor-badge {
  width: min(100%, 360px);
  max-width: 360px;
  flex: 0 0 auto;
  text-align: left;
}

body.page-contact .footer-contractor-badge-card {
  width: 100%;
  padding: 12px 14px 14px;
  border: 1px solid var(--gold);
  border-radius: 14px;
  background: linear-gradient(180deg, #141922 0%, #0d1116 100%);
  box-shadow: inset 0 0 0 1px var(--gold);
}

body.page-contact .footer-contractor-badge-layout {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 14px;
}

body.page-contact .footer-contractor-badge-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  flex: 1 1 auto;
}

body.page-contact .footer-contractor-badge-brand-copy {
  min-width: 0;
  flex: 1 1 auto;
  padding-right: 2px;
}

body.page-contact .footer-contractor-badge-meta {
  min-width: 108px;
  flex: 0 0 auto;
  padding-left: 2px;
}

body.page-contact .footer-contractor-badge-emblem {
  width: 60px;
  height: auto;
  flex: 0 0 auto;
  display: block;
}

body.page-contact .footer-contractor-badge-title {
  color: #f4e6be;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  letter-spacing: 0.07em;
  line-height: 1.1;
  white-space: nowrap;
}

body.page-contact .footer-contractor-badge-copy {
  margin-top: 6px;
  color: #c8a96b;
  font-size: 9px;
  letter-spacing: 0.14em;
  line-height: 1.15;
  text-transform: uppercase;
  font-weight: 700;
}

body.page-contact .footer-contractor-badge-copy span {
  display: block;
}

body.page-contact .footer-contractor-badge-copy span + span {
  margin-top: 1px;
}

body.page-contact .footer-contractor-badge-status {
  margin-top: 4px;
  color: #f7f0de;
  font-size: 12px;
  letter-spacing: 0.04em;
  line-height: 1.05;
  text-transform: uppercase;
  font-weight: 700;
}

body.page-contact .footer-contractor-badge-divider {
  width: 1px;
  height: auto;
  align-self: stretch;
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold) 100%);
}

body.page-contact .footer-contractor-badge-heading {
  color: #d7d0bd;
  font-size: 8.5px;
  letter-spacing: 0.12em;
  line-height: 1.25;
  text-transform: uppercase;
  font-weight: 600;
}

body.page-contact .footer-contractor-badge-heading span {
  display: block;
}

body.page-contact .footer-contractor-badge-codes {
  margin-top: 10px;
  display: grid;
  gap: 4px;
  color: #f7f0de;
}

body.page-contact .footer-contractor-badge-code {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: baseline;
  gap: 8px;
}

body.page-contact .footer-contractor-badge-code-label {
  color: #c8a96b;
  font-size: 9px;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 700;
}

body.page-contact .footer-contractor-badge-code-value {
  min-width: 0;
  font-size: 10px;
  line-height: 1.1;
  font-weight: 700;
  white-space: nowrap;
  overflow-wrap: normal;
}

body.page-contact .footer-contractor-badge-code-value--short {
  font-size: 11px;
}

body.page-contact .footer-link-cluster {
  min-width: 0;
}

body.page-contact .footer-link-column {
  flex: 0 0 auto;
  min-width: 0;
}

body.page-contact .footer-capabilities-column {
  min-width: 0;
}

body.page-contact .footer-capabilities-grid > div {
  min-width: 0;
}

body.page-contact .footer-main-column,
body.page-contact .footer-brand-column {
  min-width: 0;
}

body.page-contact .footer-brand-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

body.page-contact .footer-wordmark {
  width: 250px;
  height: auto;
  margin-bottom: 10px;
  display: block;
  margin-left: auto;
}

body.page-contact .footer-copyright {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

body.page-contact .footer-copyright-break {
  display: block;
}

@media (max-width: 1199.98px) {
  body.page-contact .footer-link-row {
    justify-content: center;
    row-gap: 24px;
  }
  body.page-contact .footer-link-row > .col,
  body.page-contact .footer-link-row > .col-md-auto {
    flex: 0 0 100%;
    max-width: 100%;
    display: flex;
    justify-content: center;
  }
  body.page-contact .footer-main-column,
  body.page-contact .footer-brand-column {
    flex: 0 0 100%;
    max-width: 100%;
  }
  body.page-contact .footer-contractor-badge {
    width: min(100%, 360px);
    max-width: 360px !important;
  }
  body.page-contact .footer-link-cluster {
    width: 100%;
    padding-top: 0;
    flex-direction: column !important;
    align-items: center !important;
    gap: 24px !important;
    text-align: center;
  }
  body.page-contact .footer-link-column {
    width: 100%;
    align-items: center;
    text-align: center;
  }
  body.page-contact .footer-link-column .mt-2,
  body.page-contact .footer-capabilities-grid {
    align-items: center !important;
  }
  body.page-contact .footer-brand-column {
    padding-top: 24px !important;
    align-items: center !important;
    text-align: center !important;
  }
  body.page-contact .footer-brand-block {
    align-items: center;
  }
  body.page-contact .footer-wordmark {
    margin-left: 0;
    margin-right: 0;
  }
  body.page-contact .footer-copyright {
    white-space: nowrap;
  }
  body.page-contact .footer-copyright-break {
    display: inline;
    margin-left: 0.35em;
  }
}
@media (min-width: 1200px) {
  body.page-contact .footer-link-row {
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
    column-gap: clamp(28px, 3vw, 44px) !important;
  }
  body.page-contact .footer-link-cluster {
    flex: 1 1 auto;
    display: flex !important;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start !important;
    gap: 50px !important;
    padding-top: 2px;
  }
  body.page-contact .footer-link-column {
    width: auto;
    flex: 0 0 auto;
  }
  body.page-contact .footer-link-column .mt-2,
  body.page-contact .footer-capabilities-grid {
    align-items: flex-start !important;
  }
}
body.page-contact footer a:hover {
  color: #c8a96b;
  text-decoration: underline;
}

body.page-contact .form-control:focus,
body.page-contact .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 0.25rem var(--gold);
}

body.page-contact .form-control,
body.page-contact .form-select,
body.page-contact textarea.form-control {
  border-color: rgba(18, 26, 42, 0.35);
  border-radius: 0;
}

/* disaster-crisis-response.scss */
body.page-disaster-crisis-response {
  color: #2f3744;
  font-family: var(--font-body);
  background: var(--ink);
  overflow-x: hidden;
}

body.page-disaster-crisis-response .text-secondary {
  color: #2f3744 !important;
}

body.page-disaster-crisis-response .gap-2 {
  gap: 0.75rem !important;
}

body.page-disaster-crisis-response h1,
body.page-disaster-crisis-response h2,
body.page-disaster-crisis-response h3,
body.page-disaster-crisis-response h4,
body.page-disaster-crisis-response h5,
body.page-disaster-crisis-response h6 {
  font-family: var(--font-display);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

body.page-disaster-crisis-response h5,
body.page-disaster-crisis-response .h5 {
  font-weight: 700;
}

body.page-disaster-crisis-response h1.display-5 {
  font-size: calc(3rem * var(--cinzel-scale) - 2px);
}

body.page-disaster-crisis-response h1.display-6,
body.page-disaster-crisis-response h2.display-6 {
  font-size: calc(2.5rem * var(--cinzel-scale));
}

body.page-disaster-crisis-response .hero-headline {
  font-weight: 700;
}

body.page-disaster-crisis-response .hero-headline {
  font-size: calc(3rem * var(--cinzel-scale) + 1px);
}

body.page-disaster-crisis-response h2.h5 {
  font-size: calc(1.25rem * var(--cinzel-scale));
}

body.page-disaster-crisis-response h3.h4 {
  font-size: calc(1.5rem * var(--cinzel-scale));
}

body.page-disaster-crisis-response .modal .modal-content h3.h4 {
  font-size: 28px;
}

body.page-disaster-crisis-response .briefing-cta {
  font-size: 15px;
  padding: 0.85rem 2.5rem;
  border-radius: 0;
}

body.page-disaster-crisis-response .modal-headline {
  font-size: 28px;
}

body.page-disaster-crisis-response .btn:not(.btn-sm) {
  font-size: 15px;
  padding: 0.85rem 2.5rem;
}

body.page-disaster-crisis-response .modal .briefing-consent {
  font-size: 11px;
  text-align: center;
  margin-top: 10px;
}

body.page-disaster-crisis-response .modal .briefing-actions {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  margin-bottom: 10px;
}

body.page-disaster-crisis-response .modal .briefing-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

body.page-disaster-crisis-response .modal .briefing-row .briefing-actions {
  margin: 0;
  justify-content: flex-end;
}

body.page-disaster-crisis-response .modal .briefing-row .briefing-consent {
  margin: 0;
  text-align: left;
}

body.page-disaster-crisis-response .logo-font {
  font-family: var(--font-display);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: calc(1em * var(--cinzel-scale));
}

body.page-disaster-crisis-response .navbar-brand {
  min-width: 0;
  gap: 0.8rem !important;
}

body.page-disaster-crisis-response .brand-logo {
  height: auto;
  width: var(--brand-logo-width);
  display: block;
}

body.page-disaster-crisis-response .brand-title {
  width: var(--brand-title-width);
  max-width: 100%;
  height: auto;
  display: block;
}

body.page-disaster-crisis-response .brand-stack {
  width: max-content;
  max-width: var(--brand-title-width);
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

body.page-disaster-crisis-response .brand-stack .small-caps {
  font-size: var(--tagline-size);
  font-family: var(--font-body);
  border-top: 1px solid var(--gold);
  text-align: center;
  padding-top: 8px;
  margin-top: 6px;
}

@media (max-width: 991.98px) {
  body.page-disaster-crisis-response .navbar > .container {
    flex-wrap: wrap;
    align-items: center;
    position: relative;
  }
  body.page-disaster-crisis-response .navbar-brand {
    flex: 1 1 auto;
    max-width: calc(100% - 76px);
  }
  body.page-disaster-crisis-response .navbar-toggler {
    flex: 0 0 auto;
    margin-left: 12px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }
  body.page-disaster-crisis-response .brand-stack .small-caps {
    display: none;
  }
  body.page-disaster-crisis-response .brand-stack {
    max-width: min(100vw - 148px, var(--brand-title-width) * 1.5625);
  }
  body.page-disaster-crisis-response .brand-title {
    width: min(100vw - 148px, var(--brand-title-width) * 1.5625);
  }
  body.page-disaster-crisis-response .brand-logo {
    width: calc(var(--brand-logo-width) * 1.25);
  }
  body.page-disaster-crisis-response .navbar-collapse {
    position: static;
    flex-basis: 100%;
    width: 100%;
    margin-top: 14px;
    padding: 4px 0 12px;
    text-align: right;
    z-index: auto;
  }
  body.page-disaster-crisis-response .navbar-collapse.show {
    display: block;
  }
  body.page-disaster-crisis-response .navbar-nav {
    width: 100%;
    align-items: flex-end;
  }
  body.page-disaster-crisis-response .navbar-nav .nav-link {
    padding-right: 0;
    text-align: right;
  }
  body.page-disaster-crisis-response .navbar-collapse .dropdown-menu {
    position: static;
    min-width: 0;
    margin-top: 0.25rem;
    padding: 0;
    background: transparent;
    border: 0;
    text-align: right;
  }
  body.page-disaster-crisis-response .navbar-collapse .dropdown-item {
    padding-right: 0;
    padding-left: 1rem;
    text-align: right;
  }
  body.page-disaster-crisis-response .navbar-collapse .dropdown-menu li + li .dropdown-item {
    color: var(--gold);
  }
  body.page-disaster-crisis-response .navbar-collapse .dropdown-menu li:first-child .dropdown-item {
    color: #fff;
  }
  body.page-disaster-crisis-response .navbar-collapse .d-flex.ms-lg-3.gap-2 {
    width: 100%;
    justify-content: flex-end;
    margin-top: 1rem;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  body.page-disaster-crisis-response .brand-stack .small-caps {
    font-size: var(--tagline-size);
  }
}
body.page-disaster-crisis-response .navbar .brand-logo,
body.page-disaster-crisis-response .navbar .brand-title {
  filter: none;
}

body.page-disaster-crisis-response .bg-ink {
  background: var(--ink);
}

body.page-disaster-crisis-response .bg-header {
  background: var(--header-ink);
}

body.page-disaster-crisis-response .text-gold {
  color: var(--gold);
}

body.page-disaster-crisis-response .btn-gold {
  --bs-btn-bg: var(--gold);
  --bs-btn-border-color: #b88f33;
  --bs-btn-color: #111;
  --bs-btn-hover-bg: transparent;
  --bs-btn-hover-border-color: var(--gold);
  --bs-btn-hover-color: var(--gold);
  --bs-btn-active-bg: transparent;
  --bs-btn-active-border-color: var(--gold);
  --bs-btn-active-color: var(--gold);
  --bs-btn-border-width: 1px;
  font-weight: 600;
  background-color: var(--gold);
  background-image: linear-gradient(180deg, var(--gold) 0%, var(--gold-2) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35), 0 6px 12px rgba(0, 0, 0, 0.18);
  text-shadow: none;
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, background-image 0.2s ease, box-shadow 0.2s ease;
}

body.page-disaster-crisis-response .btn-gold:hover,
body.page-disaster-crisis-response .btn-gold:focus-visible {
  background-color: transparent;
  background-image: none;
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: inset 0 0 0 1px rgba(200, 169, 107, 0.28);
}

body.page-disaster-crisis-response .btn-gold:active {
  background-color: transparent;
  background-image: none;
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: inset 0 0 0 1px rgba(200, 169, 107, 0.36);
}

body.page-disaster-crisis-response .btn-outline-gold {
  --bs-btn-color: var(--gold);
  --bs-btn-border-color: var(--gold);
  --bs-btn-hover-bg: var(--gold);
  --bs-btn-hover-border-color: #c79b38;
  --bs-btn-hover-color: #111;
  font-weight: 600;
  background-color: transparent;
}

body.page-disaster-crisis-response .btn-outline-gold:hover,
body.page-disaster-crisis-response .btn-outline-gold:focus-visible {
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.35) 0%, #e2c06b 55%, #b88732 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35), 0 8px 14px rgba(0, 0, 0, 0.2);
}

body.page-disaster-crisis-response .btn {
  font-family: "Open Sans", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.072em;
  font-size: 16px;
  font-weight: 700;
  border-radius: 0;
  box-shadow: none;
}

body.page-disaster-crisis-response .btn:not(.btn-sm):not(.nav-cta) {
  font-size: 15px;
}

body.page-disaster-crisis-response .btn:focus,
body.page-disaster-crisis-response .btn:focus-visible,
body.page-disaster-crisis-response .btn:active {
  box-shadow: none;
}

body.page-disaster-crisis-response .hero .btn.btn-lg:not(.briefing-cta),
body.page-disaster-crisis-response .hero-cta .btn:not(.btn-sm),
body.page-disaster-crisis-response .service-overview .overview-cta-desktop .btn:not(.btn-sm),
body.page-disaster-crisis-response .overview-cta-mobile .btn:not(.btn-sm),
body.page-disaster-crisis-response .sow-hero .btn:not(.btn-sm) {
  padding: 0.65rem 1.75rem;
}

body.page-disaster-crisis-response .btn.btn-gold {
  background-color: var(--gold);
  background-image: linear-gradient(180deg, var(--gold) 0%, var(--gold-2) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35), 0 6px 12px rgba(0, 0, 0, 0.18);
}

body.page-disaster-crisis-response .btn.btn-gold:hover,
body.page-disaster-crisis-response .btn.btn-gold:focus-visible {
  background-color: transparent;
  background-image: none;
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: inset 0 0 0 1px rgba(200, 169, 107, 0.28);
}

body.page-disaster-crisis-response .btn.btn-gold:active {
  background-color: transparent;
  background-image: none;
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: inset 0 0 0 1px rgba(200, 169, 107, 0.36);
}

body.page-disaster-crisis-response .cta-link {
  color: var(--gold);
  text-decoration: underline;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
}

body.page-disaster-crisis-response .cta-link:hover {
  color: #c8a96b;
  text-decoration: none;
}

body.page-disaster-crisis-response .menu-size {
  font-size: 14px;
}

body.page-disaster-crisis-response .marble {
  background: linear-gradient(180deg, #f7f4ec 0%, #ede8dc 100%);
}

body.page-disaster-crisis-response .hero {
  position: relative;
  overflow: hidden;
  color: #c8a96b;
  height: 550px;
  background: linear-gradient(135deg, rgba(11, 19, 32, 0.92) 0%, rgba(18, 26, 42, 0.92) 45%, rgba(11, 19, 32, 0.92) 100%), url("../images/slider-3.jpg") center 40%/cover no-repeat, radial-gradient(900px 500px at 15% 10%, var(--gold), transparent 60%), radial-gradient(900px 500px at 85% 25%, var(--gold), transparent 60%), linear-gradient(135deg, #0b1320 0%, #121a2a 45%, #0b1320 100%);
}

body.page-disaster-crisis-response .other-services-section {
  height: 550px;
}

body.page-disaster-crisis-response .hero-slide {
  background: linear-gradient(135deg, rgba(11, 19, 32, 0.92) 0%, rgba(18, 26, 42, 0.92) 45%, rgba(11, 19, 32, 0.92) 100%), var(--hero-image) center 40%/cover no-repeat, radial-gradient(900px 500px at 15% 10%, var(--gold), transparent 60%), radial-gradient(900px 500px at 85% 25%, var(--gold), transparent 60%), linear-gradient(135deg, #0b1320 0%, #121a2a 45%, #0b1320 100%);
}

body.page-disaster-crisis-response .hero-carousel,
body.page-disaster-crisis-response .hero-carousel .carousel-inner,
body.page-disaster-crisis-response .hero-carousel .carousel-item {
  height: 100%;
}

body.page-disaster-crisis-response .hero-carousel {
  min-height: calc(70vh - 100px);
}

body.page-disaster-crisis-response .hero-carousel .carousel-item {
  min-height: calc(70vh - 100px);
}

body.page-disaster-crisis-response .hero-carousel .carousel-item.active,
body.page-disaster-crisis-response .hero-carousel .carousel-item-next,
body.page-disaster-crisis-response .hero-carousel .carousel-item-prev {
  display: flex;
  align-items: center;
}

@media (max-width: 991.98px) {
  body.page-disaster-crisis-response .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  body.page-disaster-crisis-response .capability-card,
  body.page-disaster-crisis-response .modern-security-card,
  body.page-disaster-crisis-response .home-capabilities-card,
  body.page-disaster-crisis-response .bg-white.card-shadow.border,
  body.page-disaster-crisis-response .modal-content {
    padding: 20px !important;
  }
  body.page-disaster-crisis-response .service-overview,
  body.page-disaster-crisis-response .service-detail-grid {
    padding-left: 0;
    padding-right: 0;
  }
  body.page-disaster-crisis-response .service-section-container {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  body.page-disaster-crisis-response .service-section-row,
  body.page-disaster-crisis-response .service-detail-stack {
    margin-left: 0 !important;
    margin-right: 0 !important;
    --bs-gutter-x: 0;
  }
  body.page-disaster-crisis-response .service-detail-stack {
    display: block;
    padding-top: 32px !important;
  }
  body.page-disaster-crisis-response .service-detail-stack > [class*=col-] {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
    padding-left: 0;
    padding-right: 0;
  }
  body.page-disaster-crisis-response .service-detail-stack > [class*=col-] + [class*=col-] {
    margin-top: 20px;
  }
  body.page-disaster-crisis-response .service-detail-stack .bg-white.card-shadow.border {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  body.page-disaster-crisis-response .hero-carousel.hero-tight .section-pad {
    padding-top: 1.8rem !important;
    padding-bottom: 1.8rem !important;
  }
  body.page-disaster-crisis-response .other-services-section {
    height: auto;
  }
  body.page-disaster-crisis-response .other-services-grid {
    margin-left: 0 !important;
    margin-right: 0 !important;
    --bs-gutter-x: 0;
  }
  body.page-disaster-crisis-response .other-services-item {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
  body.page-disaster-crisis-response .other-services-item + .other-services-item {
    margin-top: 20px;
  }
  body.page-disaster-crisis-response .hero-cta {
    flex-direction: column;
    align-items: center;
    row-gap: 12px;
    column-gap: 0;
    margin-top: 3rem !important;
  }
  body.page-disaster-crisis-response .mobile-flat {
    border: none !important;
    box-shadow: none !important;
  }
  body.page-disaster-crisis-response footer .container.px-0 {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  body.page-disaster-crisis-response footer .row.gy-4,
  body.page-disaster-crisis-response footer .row.gy-3 {
    justify-content: center;
    text-align: center;
    column-gap: 0 !important;
    margin-left: 0;
    margin-right: 0;
  }
  body.page-disaster-crisis-response footer .row.gy-4 > [class*=col-],
  body.page-disaster-crisis-response footer .row.gy-3 > [class*=col-] {
    display: flex;
    flex-direction: column;
    align-items: center !important;
    text-align: center !important;
  }
  body.page-disaster-crisis-response footer a {
    font-size: 12px;
  }
  body.page-disaster-crisis-response footer .col-lg-4.d-flex.flex-column.text-end.align-items-end,
  body.page-disaster-crisis-response footer .col-lg-4.d-flex.flex-column.text-end.align-items-end.p-0,
  body.page-disaster-crisis-response footer .col-lg-4.d-flex.flex-column.text-end.align-items-end.p-3 {
    align-items: center !important;
    text-align: center !important;
  }
  body.page-disaster-crisis-response footer form.d-flex.align-items-center.gap-2.ms-auto {
    width: 100%;
    max-width: 320px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    justify-content: center;
  }
  body.page-disaster-crisis-response footer form.d-flex.align-items-center.gap-2.ms-auto input {
    width: 100% !important;
    margin-left: 0 !important;
  }
  body.page-disaster-crisis-response footer img[alt="Artemis Global"] {
    margin-top: 30px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  body.page-disaster-crisis-response .overview-cta-desktop {
    display: none !important;
  }
  body.page-disaster-crisis-response .overview-cta-mobile {
    display: flex !important;
    justify-content: center;
    padding-top: 20px;
  }
}
@media (max-width: 767.98px) {
  body.page-disaster-crisis-response .service-section-row {
    --bs-gutter-y: 8px;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  body.page-disaster-crisis-response .other-services-grid {
    --bs-gutter-x: 1rem;
    margin-left: calc(-0.5 * var(--bs-gutter-x)) !important;
    margin-right: calc(-0.5 * var(--bs-gutter-x)) !important;
  }
  body.page-disaster-crisis-response .other-services-item {
    width: auto;
    max-width: none;
    flex: 0 0 auto;
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    padding-right: calc(var(--bs-gutter-x) * 0.5);
  }
  body.page-disaster-crisis-response .other-services-item + .other-services-item {
    margin-top: 0;
  }
}
body.page-disaster-crisis-response .hero-carousel .carousel-indicators {
  bottom: 18px;
}

body.page-disaster-crisis-response .section-pad {
  padding: 4.5rem 0;
}

body.page-disaster-crisis-response .card-shadow {
  box-shadow: none;
}

body.page-disaster-crisis-response .card-shadow,
body.page-disaster-crisis-response .rounded-4,
body.page-disaster-crisis-response .pillar-item,
body.page-disaster-crisis-response .pillar-card,
body.page-disaster-crisis-response .modern-security-card,
body.page-disaster-crisis-response .home-capabilities-card,
body.page-disaster-crisis-response .capability-card,
body.page-disaster-crisis-response .mobile-flat,
body.page-disaster-crisis-response .modal-content {
  border-radius: 0 !important;
}

body.page-disaster-crisis-response .small-caps {
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: calc(0.78rem * var(--cinzel-scale));
  color: rgba(255, 255, 255, 0.75);
  font-family: var(--font-display);
}

body.page-disaster-crisis-response .icon-badge {
  width: 66px;
  height: 66px;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 66px;
  background: transparent;
  border: none;
  color: var(--gold);
  font-weight: 800;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: calc(1.5em * var(--cinzel-scale));
}

body.page-disaster-crisis-response .contact-icon {
  font-size: 48px;
}

body.page-disaster-crisis-response .contact-icon-email {
  font-size: 69.12px;
}

body.page-disaster-crisis-response .contact-icon-globe {
  font-size: 57.6px;
}

body.page-disaster-crisis-response .contact-icon-phone {
  transform: scale(0.8925);
}

body.page-disaster-crisis-response .creed-icon {
  font-size: calc(5.85em * var(--cinzel-scale));
  width: auto;
  height: auto;
}

body.page-disaster-crisis-response .creed-title {
  font-size: calc(1.5rem * var(--cinzel-scale) * 2.028);
}

body.page-disaster-crisis-response .creed-header {
  gap: 10px;
  margin-top: -40px;
  margin-bottom: calc(1rem - 60px);
}

body.page-disaster-crisis-response .hero-icon {
  font-size: calc(1.5em * var(--cinzel-scale) * 1.6);
}

body.page-disaster-crisis-response .contact-section {
  background: radial-gradient(900px 400px at 90% 0%, rgba(18, 26, 42, 0.08), transparent 60%), linear-gradient(180deg, #ffffff 0%, #f0ece3 100%);
  border-top: 1px solid rgba(18, 26, 42, 0.08);
}

body.page-disaster-crisis-response .eyebrow {
  font-family: var(--font-body);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
}

body.page-disaster-crisis-response .inspired-copy {
  font-size: 16px;
}

body.page-disaster-crisis-response .hero-copy {
  margin-bottom: 0;
  padding-bottom: 20px;
}

body.page-disaster-crisis-response .hero-summary {
  margin-top: 16px;
}

body.page-disaster-crisis-response .pillar-item {
  padding: 0.75rem;
  border-radius: 0;
  transition: background-color 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
  border: 1px solid transparent;
}

body.page-disaster-crisis-response .pillar-item.is-highlight {
  background: rgba(200, 169, 107, 0.16);
  border-color: rgba(200, 169, 107, 0.65);
  box-shadow: inset 4px 0 0 var(--gold);
}

body.page-disaster-crisis-response .hero .pillar-item.is-highlight .h5 {
  color: var(--gold);
}

body.page-disaster-crisis-response .pillar-item.is-highlight .icon-badge img {
  filter: brightness(1.35) contrast(1.05);
}

body.page-disaster-crisis-response footer a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}

body.page-disaster-crisis-response .navbar-nav {
  gap: 1rem;
}

body.page-disaster-crisis-response .nav-link {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 14px;
}

body.page-disaster-crisis-response .nav-link:hover,
body.page-disaster-crisis-response .nav-link:focus {
  color: var(--gold);
}

body.page-disaster-crisis-response .nav-link.active,
body.page-disaster-crisis-response .nav-link[aria-current=page],
body.page-disaster-crisis-response .dropdown-item.active,
body.page-disaster-crisis-response .dropdown-item[aria-current=page] {
  color: var(--gold);
  background-color: transparent;
}

body.page-disaster-crisis-response .dropdown-menu {
  border-radius: 0;
}

body.page-disaster-crisis-response .navbar .nav-cta {
  font-size: 14px;
  font-weight: 700;
  border-radius: 0;
  white-space: nowrap;
}

body.page-disaster-crisis-response .footer-contractor-badge {
  width: min(100%, 360px);
  max-width: 360px;
  flex: 0 0 auto;
  text-align: left;
}

body.page-disaster-crisis-response .footer-contractor-badge-card {
  width: 100%;
  padding: 12px 14px 14px;
  border: 1px solid var(--gold);
  border-radius: 14px;
  background: linear-gradient(180deg, #141922 0%, #0d1116 100%);
  box-shadow: inset 0 0 0 1px var(--gold);
}

body.page-disaster-crisis-response .footer-contractor-badge-layout {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 14px;
}

body.page-disaster-crisis-response .footer-contractor-badge-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  flex: 1 1 auto;
}

body.page-disaster-crisis-response .footer-contractor-badge-brand-copy {
  min-width: 0;
  flex: 1 1 auto;
  padding-right: 2px;
}

body.page-disaster-crisis-response .footer-contractor-badge-meta {
  min-width: 108px;
  flex: 0 0 auto;
  padding-left: 2px;
}

body.page-disaster-crisis-response .footer-contractor-badge-emblem {
  width: 60px;
  height: auto;
  flex: 0 0 auto;
  display: block;
}

body.page-disaster-crisis-response .footer-contractor-badge-title {
  color: #f4e6be;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  letter-spacing: 0.07em;
  line-height: 1.1;
  white-space: nowrap;
}

body.page-disaster-crisis-response .footer-contractor-badge-copy {
  margin-top: 6px;
  color: #c8a96b;
  font-size: 9px;
  letter-spacing: 0.14em;
  line-height: 1.15;
  text-transform: uppercase;
  font-weight: 700;
}

body.page-disaster-crisis-response .footer-contractor-badge-copy span {
  display: block;
}

body.page-disaster-crisis-response .footer-contractor-badge-copy span + span {
  margin-top: 1px;
}

body.page-disaster-crisis-response .footer-contractor-badge-status {
  margin-top: 4px;
  color: #f7f0de;
  font-size: 12px;
  letter-spacing: 0.04em;
  line-height: 1.05;
  text-transform: uppercase;
  font-weight: 700;
}

body.page-disaster-crisis-response .footer-contractor-badge-divider {
  width: 1px;
  height: auto;
  align-self: stretch;
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold) 100%);
}

body.page-disaster-crisis-response .footer-contractor-badge-heading {
  color: #d7d0bd;
  font-size: 8.5px;
  letter-spacing: 0.12em;
  line-height: 1.25;
  text-transform: uppercase;
  font-weight: 600;
}

body.page-disaster-crisis-response .footer-contractor-badge-heading span {
  display: block;
}

body.page-disaster-crisis-response .footer-contractor-badge-codes {
  margin-top: 10px;
  display: grid;
  gap: 4px;
  color: #f7f0de;
}

body.page-disaster-crisis-response .footer-contractor-badge-code {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: baseline;
  gap: 8px;
}

body.page-disaster-crisis-response .footer-contractor-badge-code-label {
  color: #c8a96b;
  font-size: 9px;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 700;
}

body.page-disaster-crisis-response .footer-contractor-badge-code-value {
  min-width: 0;
  font-size: 10px;
  line-height: 1.1;
  font-weight: 700;
  white-space: nowrap;
  overflow-wrap: normal;
}

body.page-disaster-crisis-response .footer-contractor-badge-code-value--short {
  font-size: 11px;
}

body.page-disaster-crisis-response .footer-link-cluster {
  min-width: 0;
}

body.page-disaster-crisis-response .footer-link-column {
  flex: 0 0 auto;
  min-width: 0;
}

body.page-disaster-crisis-response .footer-capabilities-column {
  min-width: 0;
}

body.page-disaster-crisis-response .footer-capabilities-grid > div {
  min-width: 0;
}

body.page-disaster-crisis-response .footer-main-column,
body.page-disaster-crisis-response .footer-brand-column {
  min-width: 0;
}

body.page-disaster-crisis-response .footer-brand-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

body.page-disaster-crisis-response .footer-wordmark {
  width: 250px;
  height: auto;
  margin-bottom: 10px;
  display: block;
  margin-left: auto;
}

body.page-disaster-crisis-response .footer-copyright {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

body.page-disaster-crisis-response .footer-copyright-break {
  display: block;
}

@media (max-width: 1199.98px) {
  body.page-disaster-crisis-response .footer-link-row {
    justify-content: center;
    row-gap: 24px;
  }
  body.page-disaster-crisis-response .footer-link-row > .col,
  body.page-disaster-crisis-response .footer-link-row > .col-md-auto {
    flex: 0 0 100%;
    max-width: 100%;
    display: flex;
    justify-content: center;
  }
  body.page-disaster-crisis-response .footer-main-column,
  body.page-disaster-crisis-response .footer-brand-column {
    flex: 0 0 100%;
    max-width: 100%;
  }
  body.page-disaster-crisis-response .footer-contractor-badge {
    width: min(100%, 360px);
    max-width: 360px !important;
  }
  body.page-disaster-crisis-response .footer-link-cluster {
    width: 100%;
    padding-top: 0;
    flex-direction: column !important;
    align-items: center !important;
    gap: 24px !important;
    text-align: center;
  }
  body.page-disaster-crisis-response .footer-link-column {
    width: 100%;
    align-items: center;
    text-align: center;
  }
  body.page-disaster-crisis-response .footer-link-column .mt-2,
  body.page-disaster-crisis-response .footer-capabilities-grid {
    align-items: center !important;
  }
  body.page-disaster-crisis-response .footer-brand-column {
    padding-top: 24px !important;
    align-items: center !important;
    text-align: center !important;
  }
  body.page-disaster-crisis-response .footer-brand-block {
    align-items: center;
  }
  body.page-disaster-crisis-response .footer-wordmark {
    margin-left: 0;
    margin-right: 0;
  }
  body.page-disaster-crisis-response .footer-copyright {
    white-space: nowrap;
  }
  body.page-disaster-crisis-response .footer-copyright-break {
    display: inline;
    margin-left: 0.35em;
  }
}
@media (min-width: 1200px) {
  body.page-disaster-crisis-response .footer-link-row {
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
    column-gap: clamp(28px, 3vw, 44px) !important;
  }
  body.page-disaster-crisis-response .footer-link-cluster {
    flex: 1 1 auto;
    display: flex !important;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start !important;
    gap: 50px !important;
    padding-top: 2px;
  }
  body.page-disaster-crisis-response .footer-link-column {
    width: auto;
    flex: 0 0 auto;
  }
  body.page-disaster-crisis-response .footer-link-column .mt-2,
  body.page-disaster-crisis-response .footer-capabilities-grid {
    align-items: flex-start !important;
  }
}
body.page-disaster-crisis-response footer a:hover {
  color: #c8a96b;
  text-decoration: underline;
}

body.page-disaster-crisis-response .form-control:focus,
body.page-disaster-crisis-response .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 0.25rem var(--gold);
}

body.page-disaster-crisis-response .form-control,
body.page-disaster-crisis-response .form-select,
body.page-disaster-crisis-response textarea.form-control {
  border-color: rgba(18, 26, 42, 0.35);
  border-radius: 0;
}

@media (min-width: 992px) {
  body.page-disaster-crisis-response .service-overview {
    min-height: 560px;
  }
}
body.page-disaster-crisis-response .service-detail-list {
  padding-left: 10px;
  margin-left: 0;
  list-style-position: inside;
}

body.page-disaster-crisis-response .service-detail-list li {
  margin-bottom: 0.5rem;
}

body.page-disaster-crisis-response .service-detail-list li:last-child {
  margin-bottom: 0;
}

body.page-disaster-crisis-response .service-card-title {
  margin: 0 !important;
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
}

body.page-disaster-crisis-response .service-detail-panel {
  padding: 0;
  overflow: hidden;
  border-color: var(--gold) !important;
}

body.page-disaster-crisis-response .service-detail-panel-blue {
  border-color: var(--gold) !important;
}

body.page-disaster-crisis-response .service-detail-panel-header {
  height: 30px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  background: var(--gold);
}

body.page-disaster-crisis-response .service-detail-panel-blue .service-detail-panel-header {
  background: var(--gold);
}

body.page-disaster-crisis-response .service-detail-panel-header .service-card-title {
  font-size: 14px;
  color: #fff;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
}

body.page-disaster-crisis-response .service-detail-panel-body {
  padding: 18px 24px 24px;
}

body.page-disaster-crisis-response .service-detail-kicker {
  margin-bottom: 8px;
  color: var(--slate);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body.page-disaster-crisis-response .service-detail-summary {
  margin-bottom: 1.25rem;
  color: #2f3744;
  font-size: 15px;
  line-height: 1.65;
}

body.page-disaster-crisis-response .service-detail-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

body.page-disaster-crisis-response .service-detail-section + .service-detail-section {
  border-left: 1px solid rgba(18, 26, 42, 0.12);
  padding-left: 24px;
}

body.page-disaster-crisis-response .service-detail-subtitle {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
}

body.page-disaster-crisis-response .service-card-icon {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex: 0 0 30px;
}

body.page-disaster-crisis-response .service-detail-panel-header .service-card-icon {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  color: #fff;
}

body.page-disaster-crisis-response .service-card-icon svg {
  width: 30px;
  height: 30px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.page-disaster-crisis-response .service-detail-panel-header .service-card-icon svg {
  width: 16px;
  height: 16px;
}

body.page-disaster-crisis-response .capability-card {
  text-align: center;
  padding-top: 10px;
}

body.page-disaster-crisis-response .capability-card .fw-semibold {
  justify-content: center;
}

body.page-disaster-crisis-response .capability-glyph img {
  width: 50px;
  height: auto;
  object-fit: contain;
  display: block;
}

body.page-disaster-crisis-response .capability-glyph {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.9rem;
  line-height: 1;
  -webkit-clip-path: none;
  clip-path: none;
}

body.page-disaster-crisis-response .capability-body {
  line-height: 27px;
  padding-top: 8px;
  padding-bottom: 8px;
}

body.page-disaster-crisis-response .capability-cta {
  margin-top: 1rem;
  margin-bottom: 18px;
  font-size: 14px;
  font-weight: 600;
}

body.page-disaster-crisis-response .capability-cta a {
  color: var(--gold);
  text-decoration: none;
}

body.page-disaster-crisis-response .capability-cta a:hover,
body.page-disaster-crisis-response .capability-cta a:focus-visible {
  color: var(--gold-2);
  text-decoration: underline;
}

body.page-disaster-crisis-response ol.service-detail-list {
  padding-left: 10px;
  margin-left: 0;
  list-style-position: inside;
}

body.page-disaster-crisis-response ol.service-detail-list ::marker {
  font-weight: 700;
}

@media (max-width: 767.98px) {
  body.page-disaster-crisis-response .service-detail-split {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  body.page-disaster-crisis-response .service-detail-section + .service-detail-section {
    border-left: none;
    border-top: 1px solid rgba(18, 26, 42, 0.12);
    padding-left: 0;
    padding-top: 18px;
  }
}
@media (min-width: 992px) {
  body.page-disaster-crisis-response .overview-cta-mobile {
    display: none !important;
  }
}
/* executive-protection.scss */
body.page-executive-protection {
  color: #2f3744;
  font-family: var(--font-body);
  background: var(--ink);
  overflow-x: hidden;
}

body.page-executive-protection .text-secondary {
  color: #2f3744 !important;
}

body.page-executive-protection .gap-2 {
  gap: 0.75rem !important;
}

body.page-executive-protection h1,
body.page-executive-protection h2,
body.page-executive-protection h3,
body.page-executive-protection h4,
body.page-executive-protection h5,
body.page-executive-protection h6 {
  font-family: var(--font-display);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

body.page-executive-protection h5,
body.page-executive-protection .h5 {
  font-weight: 700;
}

body.page-executive-protection h1.display-5 {
  font-size: calc(3rem * var(--cinzel-scale) - 2px);
}

body.page-executive-protection h1.display-6,
body.page-executive-protection h2.display-6 {
  font-size: calc(2.5rem * var(--cinzel-scale));
}

body.page-executive-protection .hero-headline {
  font-weight: 700;
}

body.page-executive-protection .hero-headline {
  font-size: calc(3rem * var(--cinzel-scale) + 1px);
}

body.page-executive-protection h2.h5 {
  font-size: calc(1.25rem * var(--cinzel-scale));
}

body.page-executive-protection h3.h4 {
  font-size: calc(1.5rem * var(--cinzel-scale));
}

body.page-executive-protection .modal .modal-content h3.h4 {
  font-size: 28px;
}

body.page-executive-protection .briefing-cta {
  font-size: 15px;
  padding: 0.85rem 2.5rem;
  border-radius: 0;
}

body.page-executive-protection .modal-headline {
  font-size: 28px;
}

body.page-executive-protection .btn:not(.btn-sm) {
  font-size: 15px;
  padding: 0.85rem 2.5rem;
}

body.page-executive-protection .modal .briefing-consent {
  font-size: 11px;
  text-align: center;
  margin-top: 10px;
}

body.page-executive-protection .modal .briefing-actions {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  margin-bottom: 10px;
}

body.page-executive-protection .modal .briefing-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

body.page-executive-protection .modal .briefing-row .briefing-actions {
  margin: 0;
  justify-content: flex-end;
}

body.page-executive-protection .modal .briefing-row .briefing-consent {
  margin: 0;
  text-align: left;
}

body.page-executive-protection .logo-font {
  font-family: var(--font-display);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: calc(1em * var(--cinzel-scale));
}

body.page-executive-protection .navbar-brand {
  min-width: 0;
  gap: 0.8rem !important;
}

body.page-executive-protection .brand-logo {
  height: auto;
  width: var(--brand-logo-width);
  display: block;
}

body.page-executive-protection .brand-title {
  width: var(--brand-title-width);
  max-width: 100%;
  height: auto;
  display: block;
}

body.page-executive-protection .brand-stack {
  width: max-content;
  max-width: var(--brand-title-width);
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

body.page-executive-protection .brand-stack .small-caps {
  font-size: var(--tagline-size);
  font-family: var(--font-body);
  border-top: 1px solid var(--gold);
  text-align: center;
  padding-top: 8px;
  margin-top: 6px;
}

@media (max-width: 991.98px) {
  body.page-executive-protection .navbar > .container {
    flex-wrap: wrap;
    align-items: center;
    position: relative;
  }
  body.page-executive-protection .navbar-brand {
    flex: 1 1 auto;
    max-width: calc(100% - 76px);
  }
  body.page-executive-protection .navbar-toggler {
    flex: 0 0 auto;
    margin-left: 12px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }
  body.page-executive-protection .brand-stack .small-caps {
    display: none;
  }
  body.page-executive-protection .brand-stack {
    max-width: min(100vw - 148px, var(--brand-title-width) * 1.5625);
  }
  body.page-executive-protection .brand-title {
    width: min(100vw - 148px, var(--brand-title-width) * 1.5625);
  }
  body.page-executive-protection .brand-logo {
    width: calc(var(--brand-logo-width) * 1.25);
  }
  body.page-executive-protection .navbar-collapse {
    position: static;
    flex-basis: 100%;
    width: 100%;
    margin-top: 14px;
    padding: 4px 0 12px;
    text-align: right;
    z-index: auto;
  }
  body.page-executive-protection .navbar-collapse.show {
    display: block;
  }
  body.page-executive-protection .navbar-nav {
    width: 100%;
    align-items: flex-end;
  }
  body.page-executive-protection .navbar-nav .nav-link {
    padding-right: 0;
    text-align: right;
  }
  body.page-executive-protection .navbar-collapse .dropdown-menu {
    position: static;
    min-width: 0;
    margin-top: 0.25rem;
    padding: 0;
    background: transparent;
    border: 0;
    text-align: right;
  }
  body.page-executive-protection .navbar-collapse .dropdown-item {
    padding-right: 0;
    padding-left: 1rem;
    text-align: right;
  }
  body.page-executive-protection .navbar-collapse .dropdown-menu li + li .dropdown-item {
    color: var(--gold);
  }
  body.page-executive-protection .navbar-collapse .dropdown-menu li:first-child .dropdown-item {
    color: #fff;
  }
  body.page-executive-protection .navbar-collapse .d-flex.ms-lg-3.gap-2 {
    width: 100%;
    justify-content: flex-end;
    margin-top: 1rem;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  body.page-executive-protection .brand-stack .small-caps {
    font-size: var(--tagline-size);
  }
}
body.page-executive-protection .navbar .brand-logo,
body.page-executive-protection .navbar .brand-title {
  filter: none;
}

body.page-executive-protection .bg-ink {
  background: var(--ink);
}

body.page-executive-protection .bg-header {
  background: var(--header-ink);
}

body.page-executive-protection .text-gold {
  color: var(--gold);
}

body.page-executive-protection .btn-gold {
  --bs-btn-bg: var(--gold);
  --bs-btn-border-color: #b88f33;
  --bs-btn-color: #111;
  --bs-btn-hover-bg: transparent;
  --bs-btn-hover-border-color: var(--gold);
  --bs-btn-hover-color: var(--gold);
  --bs-btn-active-bg: transparent;
  --bs-btn-active-border-color: var(--gold);
  --bs-btn-active-color: var(--gold);
  --bs-btn-border-width: 1px;
  font-weight: 600;
  background-color: var(--gold);
  background-image: linear-gradient(180deg, var(--gold) 0%, var(--gold-2) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35), 0 6px 12px rgba(0, 0, 0, 0.18);
  text-shadow: none;
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, background-image 0.2s ease, box-shadow 0.2s ease;
}

body.page-executive-protection .btn-gold:hover,
body.page-executive-protection .btn-gold:focus-visible {
  background-color: transparent;
  background-image: none;
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: inset 0 0 0 1px rgba(200, 169, 107, 0.28);
}

body.page-executive-protection .btn-gold:active {
  background-color: transparent;
  background-image: none;
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: inset 0 0 0 1px rgba(200, 169, 107, 0.36);
}

body.page-executive-protection .btn-outline-gold {
  --bs-btn-color: var(--gold);
  --bs-btn-border-color: var(--gold);
  --bs-btn-hover-bg: var(--gold);
  --bs-btn-hover-border-color: #c79b38;
  --bs-btn-hover-color: #111;
  font-weight: 600;
  background-color: transparent;
}

body.page-executive-protection .btn-outline-gold:hover,
body.page-executive-protection .btn-outline-gold:focus-visible {
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.35) 0%, #e2c06b 55%, #b88732 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35), 0 8px 14px rgba(0, 0, 0, 0.2);
}

body.page-executive-protection .btn {
  font-family: "Open Sans", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.072em;
  font-size: 16px;
  font-weight: 700;
  border-radius: 0;
  box-shadow: none;
}

body.page-executive-protection .btn:not(.btn-sm):not(.nav-cta) {
  font-size: 15px;
}

body.page-executive-protection .btn:focus,
body.page-executive-protection .btn:focus-visible,
body.page-executive-protection .btn:active {
  box-shadow: none;
}

body.page-executive-protection .hero .btn.btn-lg:not(.briefing-cta),
body.page-executive-protection .hero-cta .btn:not(.btn-sm),
body.page-executive-protection .service-overview .overview-cta-desktop .btn:not(.btn-sm),
body.page-executive-protection .overview-cta-mobile .btn:not(.btn-sm),
body.page-executive-protection .sow-hero .btn:not(.btn-sm) {
  padding: 0.65rem 1.75rem;
}

body.page-executive-protection .btn.btn-gold {
  background-color: var(--gold);
  background-image: linear-gradient(180deg, var(--gold) 0%, var(--gold-2) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35), 0 6px 12px rgba(0, 0, 0, 0.18);
}

body.page-executive-protection .btn.btn-gold:hover,
body.page-executive-protection .btn.btn-gold:focus-visible {
  background-color: transparent;
  background-image: none;
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: inset 0 0 0 1px rgba(200, 169, 107, 0.28);
}

body.page-executive-protection .btn.btn-gold:active {
  background-color: transparent;
  background-image: none;
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: inset 0 0 0 1px rgba(200, 169, 107, 0.36);
}

body.page-executive-protection .cta-link {
  color: var(--gold);
  text-decoration: underline;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
}

body.page-executive-protection .cta-link:hover {
  color: #c8a96b;
  text-decoration: none;
}

body.page-executive-protection .menu-size {
  font-size: 14px;
}

body.page-executive-protection .marble {
  background: linear-gradient(180deg, #f7f4ec 0%, #ede8dc 100%);
}

body.page-executive-protection .hero {
  position: relative;
  overflow: hidden;
  color: #c8a96b;
  height: 550px;
  background: linear-gradient(135deg, rgba(11, 19, 32, 0.92) 0%, rgba(18, 26, 42, 0.92) 45%, rgba(11, 19, 32, 0.92) 100%), url("../images/slider-3.jpg") center 40%/cover no-repeat, radial-gradient(900px 500px at 15% 10%, var(--gold), transparent 60%), radial-gradient(900px 500px at 85% 25%, var(--gold), transparent 60%), linear-gradient(135deg, #0b1320 0%, #121a2a 45%, #0b1320 100%);
}

body.page-executive-protection .other-services-section {
  height: 550px;
}

body.page-executive-protection .hero-slide {
  background: linear-gradient(135deg, rgba(11, 19, 32, 0.92) 0%, rgba(18, 26, 42, 0.92) 45%, rgba(11, 19, 32, 0.92) 100%), var(--hero-image) center 40%/cover no-repeat, radial-gradient(900px 500px at 15% 10%, var(--gold), transparent 60%), radial-gradient(900px 500px at 85% 25%, var(--gold), transparent 60%), linear-gradient(135deg, #0b1320 0%, #121a2a 45%, #0b1320 100%);
}

body.page-executive-protection .hero-carousel,
body.page-executive-protection .hero-carousel .carousel-inner,
body.page-executive-protection .hero-carousel .carousel-item {
  height: 100%;
}

body.page-executive-protection .hero-carousel {
  min-height: calc(70vh - 100px);
}

body.page-executive-protection .hero-carousel .carousel-item {
  min-height: calc(70vh - 100px);
}

body.page-executive-protection .hero-carousel .carousel-item.active,
body.page-executive-protection .hero-carousel .carousel-item-next,
body.page-executive-protection .hero-carousel .carousel-item-prev {
  display: flex;
  align-items: center;
}

@media (max-width: 991.98px) {
  body.page-executive-protection .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  body.page-executive-protection .capability-card,
  body.page-executive-protection .modern-security-card,
  body.page-executive-protection .home-capabilities-card,
  body.page-executive-protection .bg-white.card-shadow.border,
  body.page-executive-protection .modal-content {
    padding: 20px !important;
  }
  body.page-executive-protection .service-overview,
  body.page-executive-protection .service-detail-grid {
    padding-left: 0;
    padding-right: 0;
  }
  body.page-executive-protection .service-section-container {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  body.page-executive-protection .service-section-row,
  body.page-executive-protection .service-detail-stack {
    margin-left: 0 !important;
    margin-right: 0 !important;
    --bs-gutter-x: 0;
  }
  body.page-executive-protection .service-detail-stack {
    display: block;
    padding-top: 32px !important;
  }
  body.page-executive-protection .service-detail-stack > [class*=col-] {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
    padding-left: 0;
    padding-right: 0;
  }
  body.page-executive-protection .service-detail-stack > [class*=col-] + [class*=col-] {
    margin-top: 20px;
  }
  body.page-executive-protection .service-detail-stack .bg-white.card-shadow.border {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  body.page-executive-protection .hero-carousel.hero-tight .section-pad {
    padding-top: 1.8rem !important;
    padding-bottom: 1.8rem !important;
  }
  body.page-executive-protection .other-services-section {
    height: auto;
  }
  body.page-executive-protection .other-services-grid {
    margin-left: 0 !important;
    margin-right: 0 !important;
    --bs-gutter-x: 0;
  }
  body.page-executive-protection .other-services-item {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
  body.page-executive-protection .other-services-item + .other-services-item {
    margin-top: 20px;
  }
  body.page-executive-protection .hero-cta {
    flex-direction: column;
    align-items: center;
    row-gap: 12px;
    column-gap: 0;
    margin-top: 3rem !important;
  }
  body.page-executive-protection .mobile-flat {
    border: none !important;
    box-shadow: none !important;
  }
  body.page-executive-protection footer .container.px-0 {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  body.page-executive-protection footer .row.gy-4,
  body.page-executive-protection footer .row.gy-3 {
    justify-content: center;
    text-align: center;
    column-gap: 0 !important;
    margin-left: 0;
    margin-right: 0;
  }
  body.page-executive-protection footer .row.gy-4 > [class*=col-],
  body.page-executive-protection footer .row.gy-3 > [class*=col-] {
    display: flex;
    flex-direction: column;
    align-items: center !important;
    text-align: center !important;
  }
  body.page-executive-protection footer a {
    font-size: 12px;
  }
  body.page-executive-protection footer .col-lg-4.d-flex.flex-column.text-end.align-items-end,
  body.page-executive-protection footer .col-lg-4.d-flex.flex-column.text-end.align-items-end.p-0,
  body.page-executive-protection footer .col-lg-4.d-flex.flex-column.text-end.align-items-end.p-3 {
    align-items: center !important;
    text-align: center !important;
  }
  body.page-executive-protection footer form.d-flex.align-items-center.gap-2.ms-auto {
    width: 100%;
    max-width: 320px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    justify-content: center;
  }
  body.page-executive-protection footer form.d-flex.align-items-center.gap-2.ms-auto input {
    width: 100% !important;
    margin-left: 0 !important;
  }
  body.page-executive-protection footer img[alt="Artemis Global"] {
    margin-top: 30px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  body.page-executive-protection .overview-cta-desktop {
    display: none !important;
  }
  body.page-executive-protection .overview-cta-mobile {
    display: flex !important;
    justify-content: center;
    padding-top: 20px;
  }
}
@media (max-width: 767.98px) {
  body.page-executive-protection .service-section-row {
    --bs-gutter-y: 8px;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  body.page-executive-protection .other-services-grid {
    --bs-gutter-x: 1rem;
    margin-left: calc(-0.5 * var(--bs-gutter-x)) !important;
    margin-right: calc(-0.5 * var(--bs-gutter-x)) !important;
  }
  body.page-executive-protection .other-services-item {
    width: auto;
    max-width: none;
    flex: 0 0 auto;
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    padding-right: calc(var(--bs-gutter-x) * 0.5);
  }
  body.page-executive-protection .other-services-item + .other-services-item {
    margin-top: 0;
  }
}
body.page-executive-protection .hero-carousel .carousel-indicators {
  bottom: 18px;
}

body.page-executive-protection .section-pad {
  padding: 4.5rem 0;
}

body.page-executive-protection .card-shadow {
  box-shadow: none;
}

body.page-executive-protection .card-shadow,
body.page-executive-protection .rounded-4,
body.page-executive-protection .pillar-item,
body.page-executive-protection .pillar-card,
body.page-executive-protection .modern-security-card,
body.page-executive-protection .home-capabilities-card,
body.page-executive-protection .capability-card,
body.page-executive-protection .mobile-flat,
body.page-executive-protection .modal-content {
  border-radius: 0 !important;
}

body.page-executive-protection .small-caps {
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: calc(0.78rem * var(--cinzel-scale));
  color: rgba(255, 255, 255, 0.75);
  font-family: var(--font-display);
}

body.page-executive-protection .icon-badge {
  width: 66px;
  height: 66px;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 66px;
  background: transparent;
  border: none;
  color: var(--gold);
  font-weight: 800;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: calc(1.5em * var(--cinzel-scale));
}

body.page-executive-protection .contact-icon {
  font-size: 48px;
}

body.page-executive-protection .contact-icon-email {
  font-size: 69.12px;
}

body.page-executive-protection .contact-icon-globe {
  font-size: 57.6px;
}

body.page-executive-protection .contact-icon-phone {
  transform: scale(0.8925);
}

body.page-executive-protection .creed-icon {
  font-size: calc(5.85em * var(--cinzel-scale));
  width: auto;
  height: auto;
}

body.page-executive-protection .creed-title {
  font-size: calc(1.5rem * var(--cinzel-scale) * 2.028);
}

body.page-executive-protection .creed-header {
  gap: 10px;
  margin-top: -40px;
  margin-bottom: calc(1rem - 60px);
}

body.page-executive-protection .hero-icon {
  font-size: calc(1.5em * var(--cinzel-scale) * 1.6);
}

body.page-executive-protection .contact-section {
  background: radial-gradient(900px 400px at 90% 0%, rgba(18, 26, 42, 0.08), transparent 60%), linear-gradient(180deg, #ffffff 0%, #f0ece3 100%);
  border-top: 1px solid rgba(18, 26, 42, 0.08);
}

body.page-executive-protection .eyebrow {
  font-family: var(--font-body);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
}

body.page-executive-protection .inspired-copy {
  font-size: 16px;
}

body.page-executive-protection .hero-copy {
  margin-bottom: 0;
  padding-bottom: 20px;
}

body.page-executive-protection .hero-summary {
  margin-top: 16px;
}

body.page-executive-protection .pillar-item {
  padding: 0.75rem;
  border-radius: 0;
  transition: background-color 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
  border: 1px solid transparent;
}

body.page-executive-protection .pillar-item.is-highlight {
  background: rgba(200, 169, 107, 0.16);
  border-color: rgba(200, 169, 107, 0.65);
  box-shadow: inset 4px 0 0 var(--gold);
}

body.page-executive-protection .hero .pillar-item.is-highlight .h5 {
  color: var(--gold);
}

body.page-executive-protection .pillar-item.is-highlight .icon-badge img {
  filter: brightness(1.35) contrast(1.05);
}

body.page-executive-protection footer a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}

body.page-executive-protection .navbar-nav {
  gap: 1rem;
}

body.page-executive-protection .nav-link {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 14px;
}

body.page-executive-protection .nav-link:hover,
body.page-executive-protection .nav-link:focus {
  color: var(--gold);
}

body.page-executive-protection .nav-link.active,
body.page-executive-protection .nav-link[aria-current=page],
body.page-executive-protection .dropdown-item.active,
body.page-executive-protection .dropdown-item[aria-current=page] {
  color: var(--gold);
  background-color: transparent;
}

body.page-executive-protection .dropdown-menu {
  border-radius: 0;
}

body.page-executive-protection .navbar .nav-cta {
  font-size: 14px;
  font-weight: 700;
  border-radius: 0;
  white-space: nowrap;
}

body.page-executive-protection .footer-contractor-badge {
  width: min(100%, 360px);
  max-width: 360px;
  flex: 0 0 auto;
  text-align: left;
}

body.page-executive-protection .footer-contractor-badge-card {
  width: 100%;
  padding: 12px 14px 14px;
  border: 1px solid var(--gold);
  border-radius: 14px;
  background: linear-gradient(180deg, #141922 0%, #0d1116 100%);
  box-shadow: inset 0 0 0 1px var(--gold);
}

body.page-executive-protection .footer-contractor-badge-layout {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 14px;
}

body.page-executive-protection .footer-contractor-badge-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  flex: 1 1 auto;
}

body.page-executive-protection .footer-contractor-badge-brand-copy {
  min-width: 0;
  flex: 1 1 auto;
  padding-right: 2px;
}

body.page-executive-protection .footer-contractor-badge-meta {
  min-width: 108px;
  flex: 0 0 auto;
  padding-left: 2px;
}

body.page-executive-protection .footer-contractor-badge-emblem {
  width: 60px;
  height: auto;
  flex: 0 0 auto;
  display: block;
}

body.page-executive-protection .footer-contractor-badge-title {
  color: #f4e6be;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  letter-spacing: 0.07em;
  line-height: 1.1;
  white-space: nowrap;
}

body.page-executive-protection .footer-contractor-badge-copy {
  margin-top: 6px;
  color: #c8a96b;
  font-size: 9px;
  letter-spacing: 0.14em;
  line-height: 1.15;
  text-transform: uppercase;
  font-weight: 700;
}

body.page-executive-protection .footer-contractor-badge-copy span {
  display: block;
}

body.page-executive-protection .footer-contractor-badge-copy span + span {
  margin-top: 1px;
}

body.page-executive-protection .footer-contractor-badge-status {
  margin-top: 4px;
  color: #f7f0de;
  font-size: 12px;
  letter-spacing: 0.04em;
  line-height: 1.05;
  text-transform: uppercase;
  font-weight: 700;
}

body.page-executive-protection .footer-contractor-badge-divider {
  width: 1px;
  height: auto;
  align-self: stretch;
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold) 100%);
}

body.page-executive-protection .footer-contractor-badge-heading {
  color: #d7d0bd;
  font-size: 8.5px;
  letter-spacing: 0.12em;
  line-height: 1.25;
  text-transform: uppercase;
  font-weight: 600;
}

body.page-executive-protection .footer-contractor-badge-heading span {
  display: block;
}

body.page-executive-protection .footer-contractor-badge-codes {
  margin-top: 10px;
  display: grid;
  gap: 4px;
  color: #f7f0de;
}

body.page-executive-protection .footer-contractor-badge-code {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: baseline;
  gap: 8px;
}

body.page-executive-protection .footer-contractor-badge-code-label {
  color: #c8a96b;
  font-size: 9px;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 700;
}

body.page-executive-protection .footer-contractor-badge-code-value {
  min-width: 0;
  font-size: 10px;
  line-height: 1.1;
  font-weight: 700;
  white-space: nowrap;
  overflow-wrap: normal;
}

body.page-executive-protection .footer-contractor-badge-code-value--short {
  font-size: 11px;
}

body.page-executive-protection .footer-link-cluster {
  min-width: 0;
}

body.page-executive-protection .footer-link-column {
  flex: 0 0 auto;
  min-width: 0;
}

body.page-executive-protection .footer-capabilities-column {
  min-width: 0;
}

body.page-executive-protection .footer-capabilities-grid > div {
  min-width: 0;
}

body.page-executive-protection .footer-main-column,
body.page-executive-protection .footer-brand-column {
  min-width: 0;
}

body.page-executive-protection .footer-brand-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

body.page-executive-protection .footer-wordmark {
  width: 250px;
  height: auto;
  margin-bottom: 10px;
  display: block;
  margin-left: auto;
}

body.page-executive-protection .footer-copyright {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

body.page-executive-protection .footer-copyright-break {
  display: block;
}

@media (max-width: 1199.98px) {
  body.page-executive-protection .footer-link-row {
    justify-content: center;
    row-gap: 24px;
  }
  body.page-executive-protection .footer-link-row > .col,
  body.page-executive-protection .footer-link-row > .col-md-auto {
    flex: 0 0 100%;
    max-width: 100%;
    display: flex;
    justify-content: center;
  }
  body.page-executive-protection .footer-main-column,
  body.page-executive-protection .footer-brand-column {
    flex: 0 0 100%;
    max-width: 100%;
  }
  body.page-executive-protection .footer-contractor-badge {
    width: min(100%, 360px);
    max-width: 360px !important;
  }
  body.page-executive-protection .footer-link-cluster {
    width: 100%;
    padding-top: 0;
    flex-direction: column !important;
    align-items: center !important;
    gap: 24px !important;
    text-align: center;
  }
  body.page-executive-protection .footer-link-column {
    width: 100%;
    align-items: center;
    text-align: center;
  }
  body.page-executive-protection .footer-link-column .mt-2,
  body.page-executive-protection .footer-capabilities-grid {
    align-items: center !important;
  }
  body.page-executive-protection .footer-brand-column {
    padding-top: 24px !important;
    align-items: center !important;
    text-align: center !important;
  }
  body.page-executive-protection .footer-brand-block {
    align-items: center;
  }
  body.page-executive-protection .footer-wordmark {
    margin-left: 0;
    margin-right: 0;
  }
  body.page-executive-protection .footer-copyright {
    white-space: nowrap;
  }
  body.page-executive-protection .footer-copyright-break {
    display: inline;
    margin-left: 0.35em;
  }
}
@media (min-width: 1200px) {
  body.page-executive-protection .footer-link-row {
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
    column-gap: clamp(28px, 3vw, 44px) !important;
  }
  body.page-executive-protection .footer-link-cluster {
    flex: 1 1 auto;
    display: flex !important;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start !important;
    gap: 50px !important;
    padding-top: 2px;
  }
  body.page-executive-protection .footer-link-column {
    width: auto;
    flex: 0 0 auto;
  }
  body.page-executive-protection .footer-link-column .mt-2,
  body.page-executive-protection .footer-capabilities-grid {
    align-items: flex-start !important;
  }
}
body.page-executive-protection footer a:hover {
  color: #c8a96b;
  text-decoration: underline;
}

body.page-executive-protection .form-control:focus,
body.page-executive-protection .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 0.25rem var(--gold);
}

body.page-executive-protection .form-control,
body.page-executive-protection .form-select,
body.page-executive-protection textarea.form-control {
  border-color: rgba(18, 26, 42, 0.35);
  border-radius: 0;
}

@media (min-width: 992px) {
  body.page-executive-protection .service-overview {
    min-height: 560px;
  }
}
body.page-executive-protection .service-detail-list {
  padding-left: 10px;
  margin-left: 0;
  list-style-position: inside;
}

body.page-executive-protection .service-detail-list li {
  margin-bottom: 0.5rem;
}

body.page-executive-protection .service-detail-list li:last-child {
  margin-bottom: 0;
}

body.page-executive-protection .service-card-title {
  margin: 0 !important;
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
}

body.page-executive-protection .service-detail-panel {
  padding: 0;
  overflow: hidden;
  border-color: var(--gold) !important;
}

body.page-executive-protection .service-detail-panel-blue {
  border-color: var(--gold) !important;
}

body.page-executive-protection .service-detail-panel-header {
  height: 30px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  background: var(--gold);
}

body.page-executive-protection .service-detail-panel-blue .service-detail-panel-header {
  background: var(--gold);
}

body.page-executive-protection .service-detail-panel-header .service-card-title {
  font-size: 14px;
  color: #fff;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
}

body.page-executive-protection .service-detail-panel-body {
  padding: 18px 24px 24px;
}

body.page-executive-protection .service-detail-kicker {
  margin-bottom: 8px;
  color: var(--slate);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body.page-executive-protection .service-detail-summary {
  margin-bottom: 1.25rem;
  color: #2f3744;
  font-size: 15px;
  line-height: 1.65;
}

body.page-executive-protection .service-detail-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

body.page-executive-protection .service-detail-section + .service-detail-section {
  border-left: 1px solid rgba(18, 26, 42, 0.12);
  padding-left: 24px;
}

body.page-executive-protection .service-detail-subtitle {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
}

body.page-executive-protection .service-card-icon {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex: 0 0 30px;
}

body.page-executive-protection .service-detail-panel-header .service-card-icon {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  color: #fff;
}

body.page-executive-protection .service-card-icon svg {
  width: 30px;
  height: 30px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.page-executive-protection .service-detail-panel-header .service-card-icon svg {
  width: 16px;
  height: 16px;
}

body.page-executive-protection .capability-card {
  text-align: center;
  padding-top: 10px;
}

body.page-executive-protection .capability-card .fw-semibold {
  justify-content: center;
}

body.page-executive-protection .capability-glyph img {
  width: 50px;
  height: auto;
  object-fit: contain;
  display: block;
}

body.page-executive-protection .capability-glyph {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.9rem;
  line-height: 1;
  -webkit-clip-path: none;
  clip-path: none;
}

body.page-executive-protection .capability-body {
  line-height: 27px;
  padding-top: 8px;
  padding-bottom: 8px;
}

body.page-executive-protection .capability-cta {
  margin-top: 1rem;
  margin-bottom: 18px;
  font-size: 14px;
  font-weight: 600;
}

body.page-executive-protection .capability-cta a {
  color: var(--gold);
  text-decoration: none;
}

body.page-executive-protection .capability-cta a:hover,
body.page-executive-protection .capability-cta a:focus-visible {
  color: var(--gold-2);
  text-decoration: underline;
}

body.page-executive-protection ol.service-detail-list {
  padding-left: 10px;
  margin-left: 0;
  list-style-position: inside;
}

body.page-executive-protection ol.service-detail-list ::marker {
  font-weight: 700;
}

@media (max-width: 767.98px) {
  body.page-executive-protection .service-detail-split {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  body.page-executive-protection .service-detail-section + .service-detail-section {
    border-left: none;
    border-top: 1px solid rgba(18, 26, 42, 0.12);
    padding-left: 0;
    padding-top: 18px;
  }
}
@media (min-width: 992px) {
  body.page-executive-protection .overview-cta-mobile {
    display: none !important;
  }
}
/* guard-protective-services.scss */
body.page-guard-protective-services {
  color: #2f3744;
  font-family: var(--font-body);
  background: var(--ink);
  overflow-x: hidden;
}

body.page-guard-protective-services .text-secondary {
  color: #2f3744 !important;
}

body.page-guard-protective-services .gap-2 {
  gap: 0.75rem !important;
}

body.page-guard-protective-services h1,
body.page-guard-protective-services h2,
body.page-guard-protective-services h3,
body.page-guard-protective-services h4,
body.page-guard-protective-services h5,
body.page-guard-protective-services h6 {
  font-family: var(--font-display);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

body.page-guard-protective-services h5,
body.page-guard-protective-services .h5 {
  font-weight: 700;
}

body.page-guard-protective-services h1.display-5 {
  font-size: calc(3rem * var(--cinzel-scale) - 2px);
}

body.page-guard-protective-services h1.display-6,
body.page-guard-protective-services h2.display-6 {
  font-size: calc(2.5rem * var(--cinzel-scale));
}

body.page-guard-protective-services .hero-headline {
  font-weight: 700;
}

body.page-guard-protective-services .hero-headline {
  font-size: calc(3rem * var(--cinzel-scale) + 1px);
}

body.page-guard-protective-services h2.h5 {
  font-size: calc(1.25rem * var(--cinzel-scale));
}

body.page-guard-protective-services h3.h4 {
  font-size: calc(1.5rem * var(--cinzel-scale));
}

body.page-guard-protective-services .modal .modal-content h3.h4 {
  font-size: 28px;
}

body.page-guard-protective-services .briefing-cta {
  font-size: 15px;
  padding: 0.85rem 2.5rem;
  border-radius: 0;
}

body.page-guard-protective-services .modal-headline {
  font-size: 28px;
}

body.page-guard-protective-services .btn:not(.btn-sm) {
  font-size: 15px;
  padding: 0.85rem 2.5rem;
}

body.page-guard-protective-services .modal .briefing-consent {
  font-size: 11px;
  text-align: center;
  margin-top: 10px;
}

body.page-guard-protective-services .modal .briefing-actions {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  margin-bottom: 10px;
}

body.page-guard-protective-services .modal .briefing-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

body.page-guard-protective-services .modal .briefing-row .briefing-actions {
  margin: 0;
  justify-content: flex-end;
}

body.page-guard-protective-services .modal .briefing-row .briefing-consent {
  margin: 0;
  text-align: left;
}

body.page-guard-protective-services .logo-font {
  font-family: var(--font-display);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: calc(1em * var(--cinzel-scale));
}

body.page-guard-protective-services .navbar-brand {
  min-width: 0;
  gap: 0.8rem !important;
}

body.page-guard-protective-services .brand-logo {
  height: auto;
  width: var(--brand-logo-width);
  display: block;
}

body.page-guard-protective-services .brand-title {
  width: var(--brand-title-width);
  max-width: 100%;
  height: auto;
  display: block;
}

body.page-guard-protective-services .brand-stack {
  width: max-content;
  max-width: var(--brand-title-width);
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

body.page-guard-protective-services .brand-stack .small-caps {
  font-size: var(--tagline-size);
  font-family: var(--font-body);
  border-top: 1px solid var(--gold);
  text-align: center;
  padding-top: 8px;
  margin-top: 6px;
}

@media (max-width: 991.98px) {
  body.page-guard-protective-services .navbar > .container {
    flex-wrap: wrap;
    align-items: center;
    position: relative;
  }
  body.page-guard-protective-services .navbar-brand {
    flex: 1 1 auto;
    max-width: calc(100% - 76px);
  }
  body.page-guard-protective-services .navbar-toggler {
    flex: 0 0 auto;
    margin-left: 12px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }
  body.page-guard-protective-services .brand-stack .small-caps {
    display: none;
  }
  body.page-guard-protective-services .brand-stack {
    max-width: min(100vw - 148px, var(--brand-title-width) * 1.5625);
  }
  body.page-guard-protective-services .brand-title {
    width: min(100vw - 148px, var(--brand-title-width) * 1.5625);
  }
  body.page-guard-protective-services .brand-logo {
    width: calc(var(--brand-logo-width) * 1.25);
  }
  body.page-guard-protective-services .navbar-collapse {
    position: static;
    flex-basis: 100%;
    width: 100%;
    margin-top: 14px;
    padding: 4px 0 12px;
    text-align: right;
    z-index: auto;
  }
  body.page-guard-protective-services .navbar-collapse.show {
    display: block;
  }
  body.page-guard-protective-services .navbar-nav {
    width: 100%;
    align-items: flex-end;
  }
  body.page-guard-protective-services .navbar-nav .nav-link {
    padding-right: 0;
    text-align: right;
  }
  body.page-guard-protective-services .navbar-collapse .dropdown-menu {
    position: static;
    min-width: 0;
    margin-top: 0.25rem;
    padding: 0;
    background: transparent;
    border: 0;
    text-align: right;
  }
  body.page-guard-protective-services .navbar-collapse .dropdown-item {
    padding-right: 0;
    padding-left: 1rem;
    text-align: right;
  }
  body.page-guard-protective-services .navbar-collapse .dropdown-menu li + li .dropdown-item {
    color: var(--gold);
  }
  body.page-guard-protective-services .navbar-collapse .dropdown-menu li:first-child .dropdown-item {
    color: #fff;
  }
  body.page-guard-protective-services .navbar-collapse .d-flex.ms-lg-3.gap-2 {
    width: 100%;
    justify-content: flex-end;
    margin-top: 1rem;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  body.page-guard-protective-services .brand-stack .small-caps {
    font-size: var(--tagline-size);
  }
}
body.page-guard-protective-services .navbar .brand-logo,
body.page-guard-protective-services .navbar .brand-title {
  filter: none;
}

body.page-guard-protective-services .bg-ink {
  background: var(--ink);
}

body.page-guard-protective-services .bg-header {
  background: var(--header-ink);
}

body.page-guard-protective-services .text-gold {
  color: var(--gold);
}

body.page-guard-protective-services .btn-gold {
  --bs-btn-bg: var(--gold);
  --bs-btn-border-color: #b88f33;
  --bs-btn-color: #111;
  --bs-btn-hover-bg: transparent;
  --bs-btn-hover-border-color: var(--gold);
  --bs-btn-hover-color: var(--gold);
  --bs-btn-active-bg: transparent;
  --bs-btn-active-border-color: var(--gold);
  --bs-btn-active-color: var(--gold);
  --bs-btn-border-width: 1px;
  font-weight: 600;
  background-color: var(--gold);
  background-image: linear-gradient(180deg, var(--gold) 0%, var(--gold-2) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35), 0 6px 12px rgba(0, 0, 0, 0.18);
  text-shadow: none;
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, background-image 0.2s ease, box-shadow 0.2s ease;
}

body.page-guard-protective-services .btn-gold:hover,
body.page-guard-protective-services .btn-gold:focus-visible {
  background-color: transparent;
  background-image: none;
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: inset 0 0 0 1px rgba(200, 169, 107, 0.28);
}

body.page-guard-protective-services .btn-gold:active {
  background-color: transparent;
  background-image: none;
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: inset 0 0 0 1px rgba(200, 169, 107, 0.36);
}

body.page-guard-protective-services .btn-outline-gold {
  --bs-btn-color: var(--gold);
  --bs-btn-border-color: var(--gold);
  --bs-btn-hover-bg: var(--gold);
  --bs-btn-hover-border-color: #c79b38;
  --bs-btn-hover-color: #111;
  font-weight: 600;
  background-color: transparent;
}

body.page-guard-protective-services .btn-outline-gold:hover,
body.page-guard-protective-services .btn-outline-gold:focus-visible {
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.35) 0%, #e2c06b 55%, #b88732 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35), 0 8px 14px rgba(0, 0, 0, 0.2);
}

body.page-guard-protective-services .btn {
  font-family: "Open Sans", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.072em;
  font-size: 16px;
  font-weight: 700;
  border-radius: 0;
  box-shadow: none;
}

body.page-guard-protective-services .btn:not(.btn-sm):not(.nav-cta) {
  font-size: 15px;
}

body.page-guard-protective-services .btn:focus,
body.page-guard-protective-services .btn:focus-visible,
body.page-guard-protective-services .btn:active {
  box-shadow: none;
}

body.page-guard-protective-services .hero .btn.btn-lg:not(.briefing-cta),
body.page-guard-protective-services .hero-cta .btn:not(.btn-sm),
body.page-guard-protective-services .service-overview .overview-cta-desktop .btn:not(.btn-sm),
body.page-guard-protective-services .overview-cta-mobile .btn:not(.btn-sm),
body.page-guard-protective-services .sow-hero .btn:not(.btn-sm) {
  padding: 0.65rem 1.75rem;
}

body.page-guard-protective-services .btn.btn-gold {
  background-color: var(--gold);
  background-image: linear-gradient(180deg, var(--gold) 0%, var(--gold-2) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35), 0 6px 12px rgba(0, 0, 0, 0.18);
}

body.page-guard-protective-services .btn.btn-gold:hover,
body.page-guard-protective-services .btn.btn-gold:focus-visible {
  background-color: transparent;
  background-image: none;
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: inset 0 0 0 1px rgba(200, 169, 107, 0.28);
}

body.page-guard-protective-services .btn.btn-gold:active {
  background-color: transparent;
  background-image: none;
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: inset 0 0 0 1px rgba(200, 169, 107, 0.36);
}

body.page-guard-protective-services .cta-link {
  color: var(--gold);
  text-decoration: underline;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
}

body.page-guard-protective-services .cta-link:hover {
  color: #c8a96b;
  text-decoration: none;
}

body.page-guard-protective-services .menu-size {
  font-size: 14px;
}

body.page-guard-protective-services .marble {
  background: linear-gradient(180deg, #f7f4ec 0%, #ede8dc 100%);
}

body.page-guard-protective-services .hero {
  position: relative;
  overflow: hidden;
  color: #c8a96b;
  height: 550px;
  background: linear-gradient(135deg, rgba(11, 19, 32, 0.92) 0%, rgba(18, 26, 42, 0.92) 45%, rgba(11, 19, 32, 0.92) 100%), url("../images/slider-3.jpg") center 40%/cover no-repeat, radial-gradient(900px 500px at 15% 10%, var(--gold), transparent 60%), radial-gradient(900px 500px at 85% 25%, var(--gold), transparent 60%), linear-gradient(135deg, #0b1320 0%, #121a2a 45%, #0b1320 100%);
}

body.page-guard-protective-services .other-services-section {
  height: 550px;
}

body.page-guard-protective-services .hero-slide {
  background: linear-gradient(135deg, rgba(11, 19, 32, 0.92) 0%, rgba(18, 26, 42, 0.92) 45%, rgba(11, 19, 32, 0.92) 100%), var(--hero-image) center 40%/cover no-repeat, radial-gradient(900px 500px at 15% 10%, var(--gold), transparent 60%), radial-gradient(900px 500px at 85% 25%, var(--gold), transparent 60%), linear-gradient(135deg, #0b1320 0%, #121a2a 45%, #0b1320 100%);
}

body.page-guard-protective-services .hero-carousel,
body.page-guard-protective-services .hero-carousel .carousel-inner,
body.page-guard-protective-services .hero-carousel .carousel-item {
  height: 100%;
}

body.page-guard-protective-services .hero-carousel {
  min-height: calc(70vh - 100px);
}

body.page-guard-protective-services .hero-carousel .carousel-item {
  min-height: calc(70vh - 100px);
}

body.page-guard-protective-services .hero-carousel .carousel-item.active,
body.page-guard-protective-services .hero-carousel .carousel-item-next,
body.page-guard-protective-services .hero-carousel .carousel-item-prev {
  display: flex;
  align-items: center;
}

@media (max-width: 991.98px) {
  body.page-guard-protective-services .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  body.page-guard-protective-services .capability-card,
  body.page-guard-protective-services .modern-security-card,
  body.page-guard-protective-services .home-capabilities-card,
  body.page-guard-protective-services .bg-white.card-shadow.border,
  body.page-guard-protective-services .modal-content {
    padding: 20px !important;
  }
  body.page-guard-protective-services .service-overview,
  body.page-guard-protective-services .service-detail-grid {
    padding-left: 0;
    padding-right: 0;
  }
  body.page-guard-protective-services .service-section-container {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  body.page-guard-protective-services .service-section-row,
  body.page-guard-protective-services .service-detail-stack {
    margin-left: 0 !important;
    margin-right: 0 !important;
    --bs-gutter-x: 0;
  }
  body.page-guard-protective-services .service-detail-stack {
    display: block;
    padding-top: 32px !important;
  }
  body.page-guard-protective-services .service-detail-stack > [class*=col-] {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
    padding-left: 0;
    padding-right: 0;
  }
  body.page-guard-protective-services .service-detail-stack > [class*=col-] + [class*=col-] {
    margin-top: 20px;
  }
  body.page-guard-protective-services .service-detail-stack .bg-white.card-shadow.border {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  body.page-guard-protective-services .hero-carousel.hero-tight .section-pad {
    padding-top: 1.8rem !important;
    padding-bottom: 1.8rem !important;
  }
  body.page-guard-protective-services .other-services-section {
    height: auto;
  }
  body.page-guard-protective-services .other-services-grid {
    margin-left: 0 !important;
    margin-right: 0 !important;
    --bs-gutter-x: 0;
  }
  body.page-guard-protective-services .other-services-item {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
  body.page-guard-protective-services .other-services-item + .other-services-item {
    margin-top: 20px;
  }
  body.page-guard-protective-services .hero-cta {
    flex-direction: column;
    align-items: center;
    row-gap: 12px;
    column-gap: 0;
    margin-top: 3rem !important;
  }
  body.page-guard-protective-services .mobile-flat {
    border: none !important;
    box-shadow: none !important;
  }
  body.page-guard-protective-services footer .container.px-0 {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  body.page-guard-protective-services footer .row.gy-4,
  body.page-guard-protective-services footer .row.gy-3 {
    justify-content: center;
    text-align: center;
    column-gap: 0 !important;
    margin-left: 0;
    margin-right: 0;
  }
  body.page-guard-protective-services footer .row.gy-4 > [class*=col-],
  body.page-guard-protective-services footer .row.gy-3 > [class*=col-] {
    display: flex;
    flex-direction: column;
    align-items: center !important;
    text-align: center !important;
  }
  body.page-guard-protective-services footer a {
    font-size: 12px;
  }
  body.page-guard-protective-services footer .col-lg-4.d-flex.flex-column.text-end.align-items-end,
  body.page-guard-protective-services footer .col-lg-4.d-flex.flex-column.text-end.align-items-end.p-0,
  body.page-guard-protective-services footer .col-lg-4.d-flex.flex-column.text-end.align-items-end.p-3 {
    align-items: center !important;
    text-align: center !important;
  }
  body.page-guard-protective-services footer form.d-flex.align-items-center.gap-2.ms-auto {
    width: 100%;
    max-width: 320px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    justify-content: center;
  }
  body.page-guard-protective-services footer form.d-flex.align-items-center.gap-2.ms-auto input {
    width: 100% !important;
    margin-left: 0 !important;
  }
  body.page-guard-protective-services footer img[alt="Artemis Global"] {
    margin-top: 30px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  body.page-guard-protective-services .overview-cta-desktop {
    display: none !important;
  }
  body.page-guard-protective-services .overview-cta-mobile {
    display: flex !important;
    justify-content: center;
    padding-top: 20px;
  }
}
@media (max-width: 767.98px) {
  body.page-guard-protective-services .service-section-row {
    --bs-gutter-y: 8px;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  body.page-guard-protective-services .other-services-grid {
    --bs-gutter-x: 1rem;
    margin-left: calc(-0.5 * var(--bs-gutter-x)) !important;
    margin-right: calc(-0.5 * var(--bs-gutter-x)) !important;
  }
  body.page-guard-protective-services .other-services-item {
    width: auto;
    max-width: none;
    flex: 0 0 auto;
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    padding-right: calc(var(--bs-gutter-x) * 0.5);
  }
  body.page-guard-protective-services .other-services-item + .other-services-item {
    margin-top: 0;
  }
}
body.page-guard-protective-services .hero-carousel .carousel-indicators {
  bottom: 18px;
}

body.page-guard-protective-services .section-pad {
  padding: 4.5rem 0;
}

body.page-guard-protective-services .card-shadow {
  box-shadow: none;
}

body.page-guard-protective-services .card-shadow,
body.page-guard-protective-services .rounded-4,
body.page-guard-protective-services .pillar-item,
body.page-guard-protective-services .pillar-card,
body.page-guard-protective-services .modern-security-card,
body.page-guard-protective-services .home-capabilities-card,
body.page-guard-protective-services .capability-card,
body.page-guard-protective-services .mobile-flat,
body.page-guard-protective-services .modal-content {
  border-radius: 0 !important;
}

body.page-guard-protective-services .small-caps {
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: calc(0.78rem * var(--cinzel-scale));
  color: rgba(255, 255, 255, 0.75);
  font-family: var(--font-display);
}

body.page-guard-protective-services .icon-badge {
  width: 66px;
  height: 66px;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 66px;
  background: transparent;
  border: none;
  color: var(--gold);
  font-weight: 800;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: calc(1.5em * var(--cinzel-scale));
}

body.page-guard-protective-services .contact-icon {
  font-size: 48px;
}

body.page-guard-protective-services .contact-icon-email {
  font-size: 69.12px;
}

body.page-guard-protective-services .contact-icon-globe {
  font-size: 57.6px;
}

body.page-guard-protective-services .contact-icon-phone {
  transform: scale(0.8925);
}

body.page-guard-protective-services .creed-icon {
  font-size: calc(5.85em * var(--cinzel-scale));
  width: auto;
  height: auto;
}

body.page-guard-protective-services .creed-title {
  font-size: calc(1.5rem * var(--cinzel-scale) * 2.028);
}

body.page-guard-protective-services .creed-header {
  gap: 10px;
  margin-top: -40px;
  margin-bottom: calc(1rem - 60px);
}

body.page-guard-protective-services .hero-icon {
  font-size: calc(1.5em * var(--cinzel-scale) * 1.6);
}

body.page-guard-protective-services .contact-section {
  background: radial-gradient(900px 400px at 90% 0%, rgba(18, 26, 42, 0.08), transparent 60%), linear-gradient(180deg, #ffffff 0%, #f0ece3 100%);
  border-top: 1px solid rgba(18, 26, 42, 0.08);
}

body.page-guard-protective-services .eyebrow {
  font-family: var(--font-body);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
}

body.page-guard-protective-services .inspired-copy {
  font-size: 16px;
}

body.page-guard-protective-services .hero-copy {
  margin-bottom: 0;
  padding-bottom: 20px;
}

body.page-guard-protective-services .hero-summary {
  margin-top: 16px;
}

body.page-guard-protective-services .pillar-item {
  padding: 0.75rem;
  border-radius: 0;
  transition: background-color 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
  border: 1px solid transparent;
}

body.page-guard-protective-services .pillar-item.is-highlight {
  background: rgba(200, 169, 107, 0.16);
  border-color: rgba(200, 169, 107, 0.65);
  box-shadow: inset 4px 0 0 var(--gold);
}

body.page-guard-protective-services .hero .pillar-item.is-highlight .h5 {
  color: var(--gold);
}

body.page-guard-protective-services .pillar-item.is-highlight .icon-badge img {
  filter: brightness(1.35) contrast(1.05);
}

body.page-guard-protective-services footer a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}

body.page-guard-protective-services .navbar-nav {
  gap: 1rem;
}

body.page-guard-protective-services .nav-link {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 14px;
}

body.page-guard-protective-services .nav-link:hover,
body.page-guard-protective-services .nav-link:focus {
  color: var(--gold);
}

body.page-guard-protective-services .nav-link.active,
body.page-guard-protective-services .nav-link[aria-current=page],
body.page-guard-protective-services .dropdown-item.active,
body.page-guard-protective-services .dropdown-item[aria-current=page] {
  color: var(--gold);
  background-color: transparent;
}

body.page-guard-protective-services .dropdown-menu {
  border-radius: 0;
}

body.page-guard-protective-services .navbar .nav-cta {
  font-size: 14px;
  font-weight: 700;
  border-radius: 0;
  white-space: nowrap;
}

body.page-guard-protective-services .footer-contractor-badge {
  width: min(100%, 360px);
  max-width: 360px;
  flex: 0 0 auto;
  text-align: left;
}

body.page-guard-protective-services .footer-contractor-badge-card {
  width: 100%;
  padding: 12px 14px 14px;
  border: 1px solid var(--gold);
  border-radius: 14px;
  background: linear-gradient(180deg, #141922 0%, #0d1116 100%);
  box-shadow: inset 0 0 0 1px var(--gold);
}

body.page-guard-protective-services .footer-contractor-badge-layout {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 14px;
}

body.page-guard-protective-services .footer-contractor-badge-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  flex: 1 1 auto;
}

body.page-guard-protective-services .footer-contractor-badge-brand-copy {
  min-width: 0;
  flex: 1 1 auto;
  padding-right: 2px;
}

body.page-guard-protective-services .footer-contractor-badge-meta {
  min-width: 108px;
  flex: 0 0 auto;
  padding-left: 2px;
}

body.page-guard-protective-services .footer-contractor-badge-emblem {
  width: 60px;
  height: auto;
  flex: 0 0 auto;
  display: block;
}

body.page-guard-protective-services .footer-contractor-badge-title {
  color: #f4e6be;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  letter-spacing: 0.07em;
  line-height: 1.1;
  white-space: nowrap;
}

body.page-guard-protective-services .footer-contractor-badge-copy {
  margin-top: 6px;
  color: #c8a96b;
  font-size: 9px;
  letter-spacing: 0.14em;
  line-height: 1.15;
  text-transform: uppercase;
  font-weight: 700;
}

body.page-guard-protective-services .footer-contractor-badge-copy span {
  display: block;
}

body.page-guard-protective-services .footer-contractor-badge-copy span + span {
  margin-top: 1px;
}

body.page-guard-protective-services .footer-contractor-badge-status {
  margin-top: 4px;
  color: #f7f0de;
  font-size: 12px;
  letter-spacing: 0.04em;
  line-height: 1.05;
  text-transform: uppercase;
  font-weight: 700;
}

body.page-guard-protective-services .footer-contractor-badge-divider {
  width: 1px;
  height: auto;
  align-self: stretch;
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold) 100%);
}

body.page-guard-protective-services .footer-contractor-badge-heading {
  color: #d7d0bd;
  font-size: 8.5px;
  letter-spacing: 0.12em;
  line-height: 1.25;
  text-transform: uppercase;
  font-weight: 600;
}

body.page-guard-protective-services .footer-contractor-badge-heading span {
  display: block;
}

body.page-guard-protective-services .footer-contractor-badge-codes {
  margin-top: 10px;
  display: grid;
  gap: 4px;
  color: #f7f0de;
}

body.page-guard-protective-services .footer-contractor-badge-code {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: baseline;
  gap: 8px;
}

body.page-guard-protective-services .footer-contractor-badge-code-label {
  color: #c8a96b;
  font-size: 9px;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 700;
}

body.page-guard-protective-services .footer-contractor-badge-code-value {
  min-width: 0;
  font-size: 10px;
  line-height: 1.1;
  font-weight: 700;
  white-space: nowrap;
  overflow-wrap: normal;
}

body.page-guard-protective-services .footer-contractor-badge-code-value--short {
  font-size: 11px;
}

body.page-guard-protective-services .footer-link-cluster {
  min-width: 0;
}

body.page-guard-protective-services .footer-link-column {
  flex: 0 0 auto;
  min-width: 0;
}

body.page-guard-protective-services .footer-capabilities-column {
  min-width: 0;
}

body.page-guard-protective-services .footer-capabilities-grid > div {
  min-width: 0;
}

body.page-guard-protective-services .footer-main-column,
body.page-guard-protective-services .footer-brand-column {
  min-width: 0;
}

body.page-guard-protective-services .footer-brand-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

body.page-guard-protective-services .footer-wordmark {
  width: 250px;
  height: auto;
  margin-bottom: 10px;
  display: block;
  margin-left: auto;
}

body.page-guard-protective-services .footer-copyright {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

body.page-guard-protective-services .footer-copyright-break {
  display: block;
}

@media (max-width: 1199.98px) {
  body.page-guard-protective-services .footer-link-row {
    justify-content: center;
    row-gap: 24px;
  }
  body.page-guard-protective-services .footer-link-row > .col,
  body.page-guard-protective-services .footer-link-row > .col-md-auto {
    flex: 0 0 100%;
    max-width: 100%;
    display: flex;
    justify-content: center;
  }
  body.page-guard-protective-services .footer-main-column,
  body.page-guard-protective-services .footer-brand-column {
    flex: 0 0 100%;
    max-width: 100%;
  }
  body.page-guard-protective-services .footer-contractor-badge {
    width: min(100%, 360px);
    max-width: 360px !important;
  }
  body.page-guard-protective-services .footer-link-cluster {
    width: 100%;
    padding-top: 0;
    flex-direction: column !important;
    align-items: center !important;
    gap: 24px !important;
    text-align: center;
  }
  body.page-guard-protective-services .footer-link-column {
    width: 100%;
    align-items: center;
    text-align: center;
  }
  body.page-guard-protective-services .footer-link-column .mt-2,
  body.page-guard-protective-services .footer-capabilities-grid {
    align-items: center !important;
  }
  body.page-guard-protective-services .footer-brand-column {
    padding-top: 24px !important;
    align-items: center !important;
    text-align: center !important;
  }
  body.page-guard-protective-services .footer-brand-block {
    align-items: center;
  }
  body.page-guard-protective-services .footer-wordmark {
    margin-left: 0;
    margin-right: 0;
  }
  body.page-guard-protective-services .footer-copyright {
    white-space: nowrap;
  }
  body.page-guard-protective-services .footer-copyright-break {
    display: inline;
    margin-left: 0.35em;
  }
}
@media (min-width: 1200px) {
  body.page-guard-protective-services .footer-link-row {
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
    column-gap: clamp(28px, 3vw, 44px) !important;
  }
  body.page-guard-protective-services .footer-link-cluster {
    flex: 1 1 auto;
    display: flex !important;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start !important;
    gap: 50px !important;
    padding-top: 2px;
  }
  body.page-guard-protective-services .footer-link-column {
    width: auto;
    flex: 0 0 auto;
  }
  body.page-guard-protective-services .footer-link-column .mt-2,
  body.page-guard-protective-services .footer-capabilities-grid {
    align-items: flex-start !important;
  }
}
body.page-guard-protective-services footer a:hover {
  color: #c8a96b;
  text-decoration: underline;
}

body.page-guard-protective-services .form-control:focus,
body.page-guard-protective-services .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 0.25rem var(--gold);
}

body.page-guard-protective-services .form-control,
body.page-guard-protective-services .form-select,
body.page-guard-protective-services textarea.form-control {
  border-color: rgba(18, 26, 42, 0.35);
  border-radius: 0;
}

@media (min-width: 992px) {
  body.page-guard-protective-services .service-overview {
    min-height: 560px;
  }
}
body.page-guard-protective-services .service-detail-list {
  padding-left: 10px;
  margin-left: 0;
  list-style-position: inside;
}

body.page-guard-protective-services .service-detail-list li {
  margin-bottom: 0.5rem;
}

body.page-guard-protective-services .service-detail-list li:last-child {
  margin-bottom: 0;
}

body.page-guard-protective-services .service-card-title {
  margin: 0 !important;
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
}

body.page-guard-protective-services .service-detail-panel {
  padding: 0;
  overflow: hidden;
  border-color: var(--gold) !important;
}

body.page-guard-protective-services .service-detail-panel-blue {
  border-color: var(--gold) !important;
}

body.page-guard-protective-services .service-detail-panel-header {
  height: 30px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  background: var(--gold);
}

body.page-guard-protective-services .service-detail-panel-blue .service-detail-panel-header {
  background: var(--gold);
}

body.page-guard-protective-services .service-detail-panel-header .service-card-title {
  font-size: 14px;
  color: #fff;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
}

body.page-guard-protective-services .service-detail-panel-body {
  padding: 18px 24px 24px;
}

body.page-guard-protective-services .service-detail-kicker {
  margin-bottom: 8px;
  color: var(--slate);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body.page-guard-protective-services .service-detail-summary {
  margin-bottom: 1.25rem;
  color: #2f3744;
  font-size: 15px;
  line-height: 1.65;
}

body.page-guard-protective-services .service-detail-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

body.page-guard-protective-services .service-detail-section + .service-detail-section {
  border-left: 1px solid rgba(18, 26, 42, 0.12);
  padding-left: 24px;
}

body.page-guard-protective-services .service-detail-subtitle {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
}

body.page-guard-protective-services .service-card-icon {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex: 0 0 30px;
}

body.page-guard-protective-services .service-detail-panel-header .service-card-icon {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  color: #fff;
}

body.page-guard-protective-services .service-card-icon svg {
  width: 30px;
  height: 30px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.page-guard-protective-services .service-detail-panel-header .service-card-icon svg {
  width: 16px;
  height: 16px;
}

body.page-guard-protective-services .capability-card {
  text-align: center;
  padding-top: 10px;
}

body.page-guard-protective-services .capability-card .fw-semibold {
  justify-content: center;
}

body.page-guard-protective-services .capability-glyph img {
  width: 50px;
  height: auto;
  object-fit: contain;
  display: block;
}

body.page-guard-protective-services .capability-glyph {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.9rem;
  line-height: 1;
  -webkit-clip-path: none;
  clip-path: none;
}

body.page-guard-protective-services .capability-body {
  line-height: 27px;
  padding-top: 8px;
  padding-bottom: 8px;
}

body.page-guard-protective-services .capability-cta {
  margin-top: 1rem;
  margin-bottom: 18px;
  font-size: 14px;
  font-weight: 600;
}

body.page-guard-protective-services .capability-cta a {
  color: var(--gold);
  text-decoration: none;
}

body.page-guard-protective-services .capability-cta a:hover,
body.page-guard-protective-services .capability-cta a:focus-visible {
  color: var(--gold-2);
  text-decoration: underline;
}

body.page-guard-protective-services ol.service-detail-list {
  padding-left: 10px;
  margin-left: 0;
  list-style-position: inside;
}

body.page-guard-protective-services ol.service-detail-list ::marker {
  font-weight: 700;
}

@media (max-width: 767.98px) {
  body.page-guard-protective-services .service-detail-split {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  body.page-guard-protective-services .service-detail-section + .service-detail-section {
    border-left: none;
    border-top: 1px solid rgba(18, 26, 42, 0.12);
    padding-left: 0;
    padding-top: 18px;
  }
}
@media (min-width: 992px) {
  body.page-guard-protective-services .overview-cta-mobile {
    display: none !important;
  }
}
/* leadership-team.scss */
body.page-leadership-team {
  color: var(--ink);
  font-family: var(--font-body);
  background: var(--ink);
  overflow-x: hidden;
}

body.page-leadership-team .gap-2 {
  gap: 0.75rem !important;
}

body.page-leadership-team h1,
body.page-leadership-team h2,
body.page-leadership-team h3,
body.page-leadership-team h4,
body.page-leadership-team h5,
body.page-leadership-team h6 {
  font-family: var(--font-display);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

body.page-leadership-team h5,
body.page-leadership-team .h5 {
  font-weight: 700;
}

body.page-leadership-team h1.display-5 {
  font-size: calc(3rem * var(--cinzel-scale) - 2px);
}

body.page-leadership-team h1.display-6,
body.page-leadership-team h2.display-6 {
  font-size: calc(2.5rem * var(--cinzel-scale));
}

body.page-leadership-team h2.h5 {
  font-size: calc(1.25rem * var(--cinzel-scale));
}

body.page-leadership-team h3.h4 {
  font-size: calc(1.5rem * var(--cinzel-scale));
}

body.page-leadership-team .modal .modal-content h3.h4 {
  font-size: 28px;
}

body.page-leadership-team .briefing-cta {
  font-size: 15px;
  padding: 0.85rem 2.5rem;
  border-radius: 0;
}

body.page-leadership-team .modal .briefing-consent {
  font-size: 11px;
  text-align: center;
  margin-top: 10px;
}

body.page-leadership-team .modal .briefing-actions {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  margin-bottom: 10px;
}

body.page-leadership-team .modal .briefing-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

body.page-leadership-team .modal .briefing-row .briefing-actions {
  margin: 0;
  justify-content: flex-end;
}

body.page-leadership-team .modal .briefing-row .briefing-consent {
  margin: 0;
  text-align: left;
}

body.page-leadership-team .logo-font {
  font-family: var(--font-display);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: calc(1em * var(--cinzel-scale));
}

body.page-leadership-team .navbar-brand {
  min-width: 0;
  gap: 0.8rem !important;
}

body.page-leadership-team .brand-logo {
  height: auto;
  width: var(--brand-logo-width);
  display: block;
}

body.page-leadership-team .brand-title {
  width: var(--brand-title-width);
  max-width: 100%;
  height: auto;
  display: block;
}

body.page-leadership-team .brand-stack {
  width: max-content;
  max-width: var(--brand-title-width);
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

body.page-leadership-team .brand-stack .small-caps {
  font-size: var(--tagline-size);
  font-family: var(--font-body);
  border-top: 1px solid var(--gold);
  text-align: center;
  padding-top: 8px;
  margin-top: 6px;
}

@media (max-width: 991.98px) {
  body.page-leadership-team .navbar > .container {
    flex-wrap: wrap;
    align-items: center;
    position: relative;
  }
  body.page-leadership-team .navbar-brand {
    flex: 1 1 auto;
    max-width: calc(100% - 76px);
  }
  body.page-leadership-team .navbar-toggler {
    flex: 0 0 auto;
    margin-left: 12px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }
  body.page-leadership-team .brand-stack .small-caps {
    display: none;
  }
  body.page-leadership-team .brand-stack {
    max-width: min(100vw - 148px, var(--brand-title-width) * 1.5625);
  }
  body.page-leadership-team .brand-title {
    width: min(100vw - 148px, var(--brand-title-width) * 1.5625);
  }
  body.page-leadership-team .brand-logo {
    width: calc(var(--brand-logo-width) * 1.25);
  }
  body.page-leadership-team .navbar-collapse {
    position: static;
    flex-basis: 100%;
    width: 100%;
    margin-top: 14px;
    padding: 4px 0 12px;
    text-align: right;
    z-index: auto;
  }
  body.page-leadership-team .navbar-collapse.show {
    display: block;
  }
  body.page-leadership-team .navbar-nav {
    width: 100%;
    align-items: flex-end;
  }
  body.page-leadership-team .navbar-nav .nav-link {
    padding-right: 0;
    text-align: right;
  }
  body.page-leadership-team .navbar-collapse .dropdown-menu {
    position: static;
    min-width: 0;
    margin-top: 0.25rem;
    padding: 0;
    background: transparent;
    border: 0;
    text-align: right;
  }
  body.page-leadership-team .navbar-collapse .dropdown-item {
    padding-right: 0;
    padding-left: 1rem;
    text-align: right;
  }
  body.page-leadership-team .navbar-collapse .dropdown-menu li + li .dropdown-item {
    color: var(--gold);
  }
  body.page-leadership-team .navbar-collapse .dropdown-menu li:first-child .dropdown-item {
    color: #fff;
  }
  body.page-leadership-team .navbar-collapse .d-flex.ms-lg-3.gap-2 {
    width: 100%;
    justify-content: flex-end;
    margin-top: 1rem;
  }
  body.page-leadership-team .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  body.page-leadership-team #team > .container.section-pad {
    padding-top: calc(4.5rem - 20px);
  }
  body.page-leadership-team .capability-card,
  body.page-leadership-team .modern-security-card,
  body.page-leadership-team .home-capabilities-card,
  body.page-leadership-team .bg-white.card-shadow.border,
  body.page-leadership-team .modal-content {
    padding: 20px !important;
  }
  body.page-leadership-team footer .container.px-0 {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  body.page-leadership-team footer .row.gy-4,
  body.page-leadership-team footer .row.gy-3 {
    justify-content: center;
    text-align: center;
    column-gap: 0 !important;
    margin-left: 0;
    margin-right: 0;
  }
  body.page-leadership-team footer .row.gy-4 > [class*=col-],
  body.page-leadership-team footer .row.gy-3 > [class*=col-] {
    display: flex;
    flex-direction: column;
    align-items: center !important;
    text-align: center !important;
  }
  body.page-leadership-team footer a {
    font-size: 12px;
  }
  body.page-leadership-team footer .col-lg-4.d-flex.flex-column.text-end.align-items-end,
  body.page-leadership-team footer .col-lg-4.d-flex.flex-column.text-end.align-items-end.p-0,
  body.page-leadership-team footer .col-lg-4.d-flex.flex-column.text-end.align-items-end.p-3 {
    align-items: center !important;
    text-align: center !important;
  }
  body.page-leadership-team footer form.d-flex.align-items-center.gap-2.ms-auto {
    width: 100%;
    max-width: 320px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    justify-content: center;
  }
  body.page-leadership-team footer form.d-flex.align-items-center.gap-2.ms-auto input {
    width: 100% !important;
    margin-left: 0 !important;
  }
  body.page-leadership-team footer img[alt="Artemis Global"] {
    margin-top: 30px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  body.page-leadership-team .brand-stack .small-caps {
    font-size: var(--tagline-size);
  }
}
body.page-leadership-team .navbar .brand-logo,
body.page-leadership-team .navbar .brand-title {
  filter: none;
}

body.page-leadership-team .bg-ink {
  background: var(--ink);
}

body.page-leadership-team .bg-header {
  background: var(--header-ink);
}

body.page-leadership-team .text-gold {
  color: var(--gold);
}

body.page-leadership-team .btn-gold {
  --bs-btn-bg: var(--gold);
  --bs-btn-border-color: #b88f33;
  --bs-btn-color: #111;
  --bs-btn-hover-bg: transparent;
  --bs-btn-hover-border-color: var(--gold);
  --bs-btn-hover-color: var(--gold);
  --bs-btn-active-bg: transparent;
  --bs-btn-active-border-color: var(--gold);
  --bs-btn-active-color: var(--gold);
  --bs-btn-border-width: 1px;
  font-weight: 600;
  background-color: var(--gold);
  background-image: linear-gradient(180deg, var(--gold) 0%, var(--gold-2) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35), 0 6px 12px rgba(0, 0, 0, 0.18);
  text-shadow: none;
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, background-image 0.2s ease, box-shadow 0.2s ease;
}

body.page-leadership-team .btn-gold:hover,
body.page-leadership-team .btn-gold:focus-visible {
  background-color: transparent;
  background-image: none;
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: inset 0 0 0 1px rgba(200, 169, 107, 0.28);
}

body.page-leadership-team .btn-gold:active {
  background-color: transparent;
  background-image: none;
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: inset 0 0 0 1px rgba(200, 169, 107, 0.36);
}

body.page-leadership-team .btn-outline-gold {
  --bs-btn-color: var(--gold);
  --bs-btn-border-color: var(--gold);
  --bs-btn-hover-bg: var(--gold);
  --bs-btn-hover-border-color: #c79b38;
  --bs-btn-hover-color: #111;
  font-weight: 600;
  background-color: transparent;
}

body.page-leadership-team .btn-outline-gold:hover,
body.page-leadership-team .btn-outline-gold:focus-visible {
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.35) 0%, #e2c06b 55%, #b88732 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35), 0 8px 14px rgba(0, 0, 0, 0.2);
}

body.page-leadership-team .btn {
  font-family: "Open Sans", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.072em;
  font-size: 16px;
  font-weight: 700;
  border-radius: 0;
  box-shadow: none;
}

body.page-leadership-team .btn:not(.btn-sm):not(.nav-cta) {
  font-size: 15px;
}

body.page-leadership-team .btn:focus,
body.page-leadership-team .btn:focus-visible,
body.page-leadership-team .btn:active {
  box-shadow: none;
}

body.page-leadership-team .hero .btn.btn-lg:not(.briefing-cta),
body.page-leadership-team .hero-cta .btn:not(.btn-sm),
body.page-leadership-team .service-overview .overview-cta-desktop .btn:not(.btn-sm),
body.page-leadership-team .overview-cta-mobile .btn:not(.btn-sm),
body.page-leadership-team .sow-hero .btn:not(.btn-sm) {
  padding: 0.65rem 1.75rem;
}

body.page-leadership-team .btn.btn-gold {
  background-color: var(--gold);
  background-image: linear-gradient(180deg, var(--gold) 0%, var(--gold-2) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35), 0 6px 12px rgba(0, 0, 0, 0.18);
}

body.page-leadership-team .btn.btn-gold:hover,
body.page-leadership-team .btn.btn-gold:focus-visible {
  background-color: transparent;
  background-image: none;
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: inset 0 0 0 1px rgba(200, 169, 107, 0.28);
}

body.page-leadership-team .btn.btn-gold:active {
  background-color: transparent;
  background-image: none;
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: inset 0 0 0 1px rgba(200, 169, 107, 0.36);
}

body.page-leadership-team .cta-link {
  color: var(--gold);
  text-decoration: underline;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
}

body.page-leadership-team .cta-link:hover {
  color: #c8a96b;
  text-decoration: none;
}

body.page-leadership-team .menu-size {
  font-size: 14px;
}

body.page-leadership-team .marble {
  background: linear-gradient(180deg, #f7f4ec 0%, #ede8dc 100%);
}

body.page-leadership-team .hero {
  position: relative;
  overflow: hidden;
  color: #c8a96b;
  background: linear-gradient(135deg, rgba(11, 19, 32, 0.92) 0%, rgba(18, 26, 42, 0.92) 45%, rgba(11, 19, 32, 0.92) 100%), url("../images/slider-3.jpg") center 40%/cover no-repeat, radial-gradient(900px 500px at 15% 10%, var(--gold), transparent 60%), radial-gradient(900px 500px at 85% 25%, var(--gold), transparent 60%), linear-gradient(135deg, #0b1320 0%, #121a2a 45%, #0b1320 100%);
}

body.page-leadership-team .meander {
  height: 14px;
  background: linear-gradient(90deg, transparent 0 10px, var(--gold) 10px 12px, transparent 12px 22px, var(--gold) 22px 24px, transparent 24px 34px, var(--gold) 34px 36px, transparent 36px 46px, var(--gold) 46px 48px, transparent 48px 58px, var(--gold) 58px 60px, transparent 60px 70px);
  opacity: 0.9;
}

body.page-leadership-team .section-pad {
  padding: 4.5rem 0;
}

body.page-leadership-team .card-shadow {
  box-shadow: none;
}

body.page-leadership-team .card-shadow,
body.page-leadership-team .rounded-4,
body.page-leadership-team .pillar-item,
body.page-leadership-team .pillar-card,
body.page-leadership-team .modern-security-card,
body.page-leadership-team .home-capabilities-card,
body.page-leadership-team .capability-card,
body.page-leadership-team .mobile-flat,
body.page-leadership-team .modal-content {
  border-radius: 0 !important;
}

body.page-leadership-team .small-caps {
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: calc(0.78rem * var(--cinzel-scale));
  color: rgba(255, 255, 255, 0.75);
  font-family: var(--font-display);
}

body.page-leadership-team .icon-badge {
  width: 66px;
  height: 66px;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 66px;
  background: transparent;
  border: none;
  color: var(--gold);
  font-weight: 800;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: calc(1.5em * var(--cinzel-scale));
}

body.page-leadership-team .contact-icon {
  font-size: 48px;
}

body.page-leadership-team .contact-icon-email {
  font-size: 69.12px;
}

body.page-leadership-team .contact-icon-globe {
  font-size: 57.6px;
  font-size: 0;
}

body.page-leadership-team .contact-icon-globe svg {
  width: 46px;
  height: 46px;
  display: block;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.page-leadership-team .contact-icon-phone {
  transform: scale(0.8925);
}

body.page-leadership-team .creed-icon {
  font-size: calc(5.85em * var(--cinzel-scale));
  width: auto;
  height: auto;
}

body.page-leadership-team .creed-title {
  font-size: calc(1.5rem * var(--cinzel-scale) * 2.028);
}

body.page-leadership-team .creed-header {
  gap: 10px;
  margin-top: -40px;
  margin-bottom: calc(1rem - 60px);
}

body.page-leadership-team .hero-icon {
  font-size: calc(1.5em * var(--cinzel-scale) * 1.6);
}

body.page-leadership-team .contact-section {
  background: radial-gradient(900px 400px at 90% 0%, rgba(18, 26, 42, 0.08), transparent 60%), linear-gradient(180deg, #ffffff 0%, #f0ece3 100%);
  border-top: 1px solid rgba(18, 26, 42, 0.08);
}

body.page-leadership-team .profile-card {
  background: transparent;
  border-radius: 0;
  padding: 2.25rem 2.25rem 0 0;
  text-align: center;
  box-shadow: none;
}

body.page-leadership-team .leadership-list {
  row-gap: 0;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

body.page-leadership-team .leadership-heading {
  width: 90%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding-top: 30px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

body.page-leadership-team .leadership-heading::before,
body.page-leadership-team .leadership-heading::after {
  content: "";
  flex: 1 1 auto;
  border-top: 1px solid rgba(18, 26, 42, 0.18);
}

body.page-leadership-team .team-intro {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

body.page-leadership-team .leadership-list > .col-12 {
  width: 100%;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

body.page-leadership-team .leadership-list > .col-12:first-child {
  padding-top: 0;
}

body.page-leadership-team .leadership-list > .col-12 + .col-12 {
  border-top: 1px solid rgba(18, 26, 42, 0.14);
}

body.page-leadership-team .leadership-list > .col-12:last-child {
  padding-bottom: 30px;
}

body.page-leadership-team .profile-card .h4 {
  font-size: 1.5rem;
}

body.page-leadership-team .profile-content {
  width: 100%;
}

body.page-leadership-team .profile-role {
  margin-bottom: 0.5rem !important;
}

body.page-leadership-team .profile-bio {
  margin-top: 1rem;
  text-align: left;
}

body.page-leadership-team .profile-content .profile-bio:first-of-type {
  margin-top: 0;
  padding-top: 5px;
}

body.page-leadership-team .protection-team-image {
  width: 300px;
  max-width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border: 1px solid var(--gold);
}

body.page-leadership-team .profile-media {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
}

@media (min-width: 992px) {
  body.page-leadership-team .profile-card {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 32px;
    row-gap: 6px;
    align-items: start;
    text-align: left;
  }
  body.page-leadership-team .profile-media {
    align-items: flex-start;
  }
  body.page-leadership-team .profile-content {
    align-self: start;
  }
  body.page-leadership-team .profile-avatar {
    margin: 0;
  }
}
body.page-leadership-team .analyst-cta {
  font-size: 15px;
  font-weight: 600;
}

body.page-leadership-team .profile-avatar {
  width: 150px;
  height: 150px;
  border-radius: 0;
  object-fit: cover;
  display: block;
  margin: 0 auto 18px;
  border: none;
  box-shadow: 0 6px 12px rgba(11, 19, 32, 0.09);
  -webkit-user-drag: none;
  pointer-events: none;
}

body.page-leadership-team .profile-role {
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--slate);
  font-weight: 600;
}

body.page-leadership-team .eyebrow {
  font-family: var(--font-body);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
}

body.page-leadership-team .inspired-copy {
  font-size: 16px;
}

body.page-leadership-team footer a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}

body.page-leadership-team .navbar-nav {
  gap: 1rem;
}

body.page-leadership-team .nav-link {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 14px;
}

body.page-leadership-team .nav-link:hover,
body.page-leadership-team .nav-link:focus {
  color: var(--gold);
}

body.page-leadership-team .nav-link.active,
body.page-leadership-team .nav-link[aria-current=page],
body.page-leadership-team .dropdown-item.active,
body.page-leadership-team .dropdown-item[aria-current=page] {
  color: var(--gold);
  background-color: transparent;
}

body.page-leadership-team .dropdown-menu {
  border-radius: 0;
}

body.page-leadership-team .navbar .nav-cta {
  font-size: 14px;
  font-weight: 700;
  border-radius: 0;
  white-space: nowrap;
}

body.page-leadership-team .footer-contractor-badge {
  width: min(100%, 360px);
  max-width: 360px;
  flex: 0 0 auto;
  text-align: left;
}

body.page-leadership-team .footer-contractor-badge-card {
  width: 100%;
  padding: 12px 14px 14px;
  border: 1px solid var(--gold);
  border-radius: 14px;
  background: linear-gradient(180deg, #141922 0%, #0d1116 100%);
  box-shadow: inset 0 0 0 1px var(--gold);
}

body.page-leadership-team .footer-contractor-badge-layout {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 14px;
}

body.page-leadership-team .footer-contractor-badge-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  flex: 1 1 auto;
}

body.page-leadership-team .footer-contractor-badge-brand-copy {
  min-width: 0;
  flex: 1 1 auto;
  padding-right: 2px;
}

body.page-leadership-team .footer-contractor-badge-meta {
  min-width: 108px;
  flex: 0 0 auto;
  padding-left: 2px;
}

body.page-leadership-team .footer-contractor-badge-emblem {
  width: 60px;
  height: auto;
  flex: 0 0 auto;
  display: block;
}

body.page-leadership-team .footer-contractor-badge-title {
  color: #f4e6be;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  letter-spacing: 0.07em;
  line-height: 1.1;
  white-space: nowrap;
}

body.page-leadership-team .footer-contractor-badge-copy {
  margin-top: 6px;
  color: #c8a96b;
  font-size: 9px;
  letter-spacing: 0.14em;
  line-height: 1.15;
  text-transform: uppercase;
  font-weight: 700;
}

body.page-leadership-team .footer-contractor-badge-copy span {
  display: block;
}

body.page-leadership-team .footer-contractor-badge-copy span + span {
  margin-top: 1px;
}

body.page-leadership-team .footer-contractor-badge-status {
  margin-top: 4px;
  color: #f7f0de;
  font-size: 12px;
  letter-spacing: 0.04em;
  line-height: 1.05;
  text-transform: uppercase;
  font-weight: 700;
}

body.page-leadership-team .footer-contractor-badge-divider {
  width: 1px;
  height: auto;
  align-self: stretch;
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold) 100%);
}

body.page-leadership-team .footer-contractor-badge-heading {
  color: #d7d0bd;
  font-size: 8.5px;
  letter-spacing: 0.12em;
  line-height: 1.25;
  text-transform: uppercase;
  font-weight: 600;
}

body.page-leadership-team .footer-contractor-badge-heading span {
  display: block;
}

body.page-leadership-team .footer-contractor-badge-codes {
  margin-top: 10px;
  display: grid;
  gap: 4px;
  color: #f7f0de;
}

body.page-leadership-team .footer-contractor-badge-code {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: baseline;
  gap: 8px;
}

body.page-leadership-team .footer-contractor-badge-code-label {
  color: #c8a96b;
  font-size: 9px;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 700;
}

body.page-leadership-team .footer-contractor-badge-code-value {
  min-width: 0;
  font-size: 10px;
  line-height: 1.1;
  font-weight: 700;
  white-space: nowrap;
  overflow-wrap: normal;
}

body.page-leadership-team .footer-contractor-badge-code-value--short {
  font-size: 11px;
}

body.page-leadership-team .footer-link-cluster {
  min-width: 0;
}

body.page-leadership-team .footer-link-column {
  flex: 0 0 auto;
  min-width: 0;
}

body.page-leadership-team .footer-capabilities-column {
  min-width: 0;
}

body.page-leadership-team .footer-capabilities-grid > div {
  min-width: 0;
}

body.page-leadership-team .footer-main-column,
body.page-leadership-team .footer-brand-column {
  min-width: 0;
}

body.page-leadership-team .footer-brand-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

body.page-leadership-team .footer-wordmark {
  width: 250px;
  height: auto;
  margin-bottom: 10px;
  display: block;
  margin-left: auto;
}

body.page-leadership-team .footer-copyright {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

body.page-leadership-team .footer-copyright-break {
  display: block;
}

@media (max-width: 1199.98px) {
  body.page-leadership-team .footer-link-row {
    justify-content: center;
    row-gap: 24px;
  }
  body.page-leadership-team .footer-link-row > .col,
  body.page-leadership-team .footer-link-row > .col-md-auto {
    flex: 0 0 100%;
    max-width: 100%;
    display: flex;
    justify-content: center;
  }
  body.page-leadership-team .footer-main-column,
  body.page-leadership-team .footer-brand-column {
    flex: 0 0 100%;
    max-width: 100%;
  }
  body.page-leadership-team .footer-contractor-badge {
    width: min(100%, 360px);
    max-width: 360px !important;
  }
  body.page-leadership-team .footer-link-cluster {
    width: 100%;
    padding-top: 0;
    flex-direction: column !important;
    align-items: center !important;
    gap: 24px !important;
    text-align: center;
  }
  body.page-leadership-team .footer-link-column {
    width: 100%;
    align-items: center;
    text-align: center;
  }
  body.page-leadership-team .footer-link-column .mt-2,
  body.page-leadership-team .footer-capabilities-grid {
    align-items: center !important;
  }
  body.page-leadership-team .footer-brand-column {
    padding-top: 24px !important;
    align-items: center !important;
    text-align: center !important;
  }
  body.page-leadership-team .footer-brand-block {
    align-items: center;
  }
  body.page-leadership-team .footer-wordmark {
    margin-left: 0;
    margin-right: 0;
  }
  body.page-leadership-team .footer-copyright {
    white-space: nowrap;
  }
  body.page-leadership-team .footer-copyright-break {
    display: inline;
    margin-left: 0.35em;
  }
}
@media (min-width: 1200px) {
  body.page-leadership-team .footer-link-row {
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
    column-gap: clamp(28px, 3vw, 44px) !important;
  }
  body.page-leadership-team .footer-link-cluster {
    flex: 1 1 auto;
    display: flex !important;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start !important;
    gap: 50px !important;
    padding-top: 2px;
  }
  body.page-leadership-team .footer-link-column {
    width: auto;
    flex: 0 0 auto;
  }
  body.page-leadership-team .footer-link-column .mt-2,
  body.page-leadership-team .footer-capabilities-grid {
    align-items: flex-start !important;
  }
}
body.page-leadership-team footer a:hover {
  color: #c8a96b;
  text-decoration: underline;
}

body.page-leadership-team .form-control:focus,
body.page-leadership-team .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 0.25rem var(--gold);
}

body.page-leadership-team .form-control,
body.page-leadership-team .form-select,
body.page-leadership-team textarea.form-control {
  border-color: rgba(18, 26, 42, 0.35);
  border-radius: 0;
}

/* physical-penetration-testing.scss */
body.page-physical-penetration-testing {
  color: var(--ink);
  font-family: var(--font-body);
  background: var(--ink);
  overflow-x: hidden;
}

body.page-physical-penetration-testing .text-secondary {
  color: #2f3744 !important;
}

body.page-physical-penetration-testing .gap-2 {
  gap: 0.75rem !important;
}

body.page-physical-penetration-testing h1,
body.page-physical-penetration-testing h2,
body.page-physical-penetration-testing h3,
body.page-physical-penetration-testing h4,
body.page-physical-penetration-testing h5,
body.page-physical-penetration-testing h6 {
  font-family: var(--font-display);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

body.page-physical-penetration-testing h5,
body.page-physical-penetration-testing .h5 {
  font-weight: 700;
}

body.page-physical-penetration-testing h1.display-5 {
  font-size: calc(3rem * var(--cinzel-scale) - 2px);
}

body.page-physical-penetration-testing h1.display-6,
body.page-physical-penetration-testing h2.display-6 {
  font-size: calc(2.5rem * var(--cinzel-scale));
}

body.page-physical-penetration-testing .hero-headline {
  font-weight: 700;
}

body.page-physical-penetration-testing .hero-headline {
  font-size: calc(3rem * var(--cinzel-scale) + 1px);
}

body.page-physical-penetration-testing h2.h5 {
  font-size: calc(1.25rem * var(--cinzel-scale));
}

body.page-physical-penetration-testing h3.h4 {
  font-size: calc(1.5rem * var(--cinzel-scale));
}

body.page-physical-penetration-testing .modal .modal-content h3.h4 {
  font-size: 28px;
}

body.page-physical-penetration-testing .briefing-cta {
  font-size: 15px;
  padding: 0.85rem 2.5rem;
  border-radius: 0;
}

body.page-physical-penetration-testing .modal-headline {
  font-size: 28px;
}

body.page-physical-penetration-testing .btn:not(.btn-sm) {
  font-size: 15px;
  padding: 0.85rem 2.5rem;
}

body.page-physical-penetration-testing .modal .briefing-consent {
  font-size: 11px;
  text-align: center;
  margin-top: 10px;
}

body.page-physical-penetration-testing .modal .briefing-actions {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  margin-bottom: 10px;
}

body.page-physical-penetration-testing .modal .briefing-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

body.page-physical-penetration-testing .modal .briefing-row .briefing-actions {
  margin: 0;
  justify-content: flex-end;
}

body.page-physical-penetration-testing .modal .briefing-row .briefing-consent {
  margin: 0;
  text-align: left;
}

body.page-physical-penetration-testing .logo-font {
  font-family: var(--font-display);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: calc(1em * var(--cinzel-scale));
}

body.page-physical-penetration-testing .navbar-brand {
  min-width: 0;
  gap: 0.8rem !important;
}

body.page-physical-penetration-testing .brand-logo {
  height: auto;
  width: var(--brand-logo-width);
  display: block;
}

body.page-physical-penetration-testing .brand-title {
  width: var(--brand-title-width);
  max-width: 100%;
  height: auto;
  display: block;
}

body.page-physical-penetration-testing .brand-stack {
  width: max-content;
  max-width: var(--brand-title-width);
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

body.page-physical-penetration-testing .brand-stack .small-caps {
  font-size: var(--tagline-size);
  font-family: var(--font-body);
  border-top: 1px solid var(--gold);
  text-align: center;
  padding-top: 8px;
  margin-top: 6px;
}

@media (max-width: 991.98px) {
  body.page-physical-penetration-testing .navbar > .container {
    flex-wrap: wrap;
    align-items: center;
    position: relative;
  }
  body.page-physical-penetration-testing .navbar-brand {
    flex: 1 1 auto;
    max-width: calc(100% - 76px);
  }
  body.page-physical-penetration-testing .navbar-toggler {
    flex: 0 0 auto;
    margin-left: 12px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }
  body.page-physical-penetration-testing .brand-stack .small-caps {
    display: none;
  }
  body.page-physical-penetration-testing .brand-stack {
    max-width: min(100vw - 148px, var(--brand-title-width) * 1.5625);
  }
  body.page-physical-penetration-testing .brand-title {
    width: min(100vw - 148px, var(--brand-title-width) * 1.5625);
  }
  body.page-physical-penetration-testing .brand-logo {
    width: calc(var(--brand-logo-width) * 1.25);
  }
  body.page-physical-penetration-testing .navbar-collapse {
    position: static;
    flex-basis: 100%;
    width: 100%;
    margin-top: 14px;
    padding: 4px 0 12px;
    text-align: right;
    z-index: auto;
  }
  body.page-physical-penetration-testing .navbar-collapse.show {
    display: block;
  }
  body.page-physical-penetration-testing .navbar-nav {
    width: 100%;
    align-items: flex-end;
  }
  body.page-physical-penetration-testing .navbar-nav .nav-link {
    padding-right: 0;
    text-align: right;
  }
  body.page-physical-penetration-testing .navbar-collapse .dropdown-menu {
    position: static;
    min-width: 0;
    margin-top: 0.25rem;
    padding: 0;
    background: transparent;
    border: 0;
    text-align: right;
  }
  body.page-physical-penetration-testing .navbar-collapse .dropdown-item {
    padding-right: 0;
    padding-left: 1rem;
    text-align: right;
  }
  body.page-physical-penetration-testing .navbar-collapse .dropdown-menu li + li .dropdown-item {
    color: var(--gold);
  }
  body.page-physical-penetration-testing .navbar-collapse .dropdown-menu li:first-child .dropdown-item {
    color: #fff;
  }
  body.page-physical-penetration-testing .navbar-collapse .d-flex.ms-lg-3.gap-2 {
    width: 100%;
    justify-content: flex-end;
    margin-top: 1rem;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  body.page-physical-penetration-testing .brand-stack .small-caps {
    font-size: var(--tagline-size);
  }
}
body.page-physical-penetration-testing .navbar .brand-logo,
body.page-physical-penetration-testing .navbar .brand-title {
  filter: none;
}

body.page-physical-penetration-testing .bg-ink {
  background: var(--ink);
}

body.page-physical-penetration-testing .bg-header {
  background: var(--header-ink);
}

body.page-physical-penetration-testing .text-gold {
  color: var(--gold);
}

body.page-physical-penetration-testing .btn-gold {
  --bs-btn-bg: var(--gold);
  --bs-btn-border-color: #b88f33;
  --bs-btn-color: #111;
  --bs-btn-hover-bg: transparent;
  --bs-btn-hover-border-color: var(--gold);
  --bs-btn-hover-color: var(--gold);
  --bs-btn-active-bg: transparent;
  --bs-btn-active-border-color: var(--gold);
  --bs-btn-active-color: var(--gold);
  --bs-btn-border-width: 1px;
  font-weight: 600;
  background-color: var(--gold);
  background-image: linear-gradient(180deg, var(--gold) 0%, var(--gold-2) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35), 0 6px 12px rgba(0, 0, 0, 0.18);
  text-shadow: none;
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, background-image 0.2s ease, box-shadow 0.2s ease;
}

body.page-physical-penetration-testing .btn-gold:hover,
body.page-physical-penetration-testing .btn-gold:focus-visible {
  background-color: transparent;
  background-image: none;
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: inset 0 0 0 1px rgba(200, 169, 107, 0.28);
}

body.page-physical-penetration-testing .btn-gold:active {
  background-color: transparent;
  background-image: none;
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: inset 0 0 0 1px rgba(200, 169, 107, 0.36);
}

body.page-physical-penetration-testing .btn-outline-gold {
  --bs-btn-color: var(--gold);
  --bs-btn-border-color: var(--gold);
  --bs-btn-hover-bg: var(--gold);
  --bs-btn-hover-border-color: #c79b38;
  --bs-btn-hover-color: #111;
  font-weight: 600;
  background-color: transparent;
}

body.page-physical-penetration-testing .btn-outline-gold:hover,
body.page-physical-penetration-testing .btn-outline-gold:focus-visible {
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.35) 0%, #e2c06b 55%, #b88732 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35), 0 8px 14px rgba(0, 0, 0, 0.2);
}

body.page-physical-penetration-testing .btn {
  font-family: "Open Sans", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.072em;
  font-size: 16px;
  font-weight: 700;
  border-radius: 0;
  box-shadow: none;
}

body.page-physical-penetration-testing .btn:not(.btn-sm):not(.nav-cta) {
  font-size: 15px;
}

body.page-physical-penetration-testing .btn:focus,
body.page-physical-penetration-testing .btn:focus-visible,
body.page-physical-penetration-testing .btn:active {
  box-shadow: none;
}

body.page-physical-penetration-testing .hero .btn.btn-lg:not(.briefing-cta),
body.page-physical-penetration-testing .hero-cta .btn:not(.btn-sm),
body.page-physical-penetration-testing .service-overview .overview-cta-desktop .btn:not(.btn-sm),
body.page-physical-penetration-testing .overview-cta-mobile .btn:not(.btn-sm),
body.page-physical-penetration-testing .sow-hero .btn:not(.btn-sm) {
  padding: 0.65rem 1.75rem;
}

body.page-physical-penetration-testing .btn.btn-gold {
  background-color: var(--gold);
  background-image: linear-gradient(180deg, var(--gold) 0%, var(--gold-2) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35), 0 6px 12px rgba(0, 0, 0, 0.18);
}

body.page-physical-penetration-testing .btn.btn-gold:hover,
body.page-physical-penetration-testing .btn.btn-gold:focus-visible {
  background-color: transparent;
  background-image: none;
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: inset 0 0 0 1px rgba(200, 169, 107, 0.28);
}

body.page-physical-penetration-testing .btn.btn-gold:active {
  background-color: transparent;
  background-image: none;
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: inset 0 0 0 1px rgba(200, 169, 107, 0.36);
}

body.page-physical-penetration-testing .cta-link {
  color: var(--gold);
  text-decoration: underline;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
}

body.page-physical-penetration-testing .cta-link:hover {
  color: #c8a96b;
  text-decoration: none;
}

body.page-physical-penetration-testing .menu-size {
  font-size: 14px;
}

body.page-physical-penetration-testing .marble {
  background: linear-gradient(180deg, #f7f4ec 0%, #ede8dc 100%);
}

body.page-physical-penetration-testing .hero {
  position: relative;
  overflow: hidden;
  color: #c8a96b;
  height: 550px;
  background: linear-gradient(135deg, rgba(11, 19, 32, 0.92) 0%, rgba(18, 26, 42, 0.92) 45%, rgba(11, 19, 32, 0.92) 100%), url("../images/slider-3.jpg") center 40%/cover no-repeat, radial-gradient(900px 500px at 15% 10%, var(--gold), transparent 60%), radial-gradient(900px 500px at 85% 25%, var(--gold), transparent 60%), linear-gradient(135deg, #0b1320 0%, #121a2a 45%, #0b1320 100%);
}

body.page-physical-penetration-testing .other-services-section {
  height: 550px;
}

body.page-physical-penetration-testing .hero-slide {
  background: linear-gradient(135deg, rgba(11, 19, 32, 0.92) 0%, rgba(18, 26, 42, 0.92) 45%, rgba(11, 19, 32, 0.92) 100%), var(--hero-image) center 40%/cover no-repeat, radial-gradient(900px 500px at 15% 10%, var(--gold), transparent 60%), radial-gradient(900px 500px at 85% 25%, var(--gold), transparent 60%), linear-gradient(135deg, #0b1320 0%, #121a2a 45%, #0b1320 100%);
}

body.page-physical-penetration-testing .hero-carousel,
body.page-physical-penetration-testing .hero-carousel .carousel-inner,
body.page-physical-penetration-testing .hero-carousel .carousel-item {
  height: 100%;
}

body.page-physical-penetration-testing .hero-carousel {
  min-height: calc(70vh - 100px);
}

body.page-physical-penetration-testing .hero-carousel .carousel-item {
  min-height: calc(70vh - 100px);
}

body.page-physical-penetration-testing .hero-carousel .carousel-item.active,
body.page-physical-penetration-testing .hero-carousel .carousel-item-next,
body.page-physical-penetration-testing .hero-carousel .carousel-item-prev {
  display: flex;
  align-items: center;
}

@media (max-width: 991.98px) {
  body.page-physical-penetration-testing .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  body.page-physical-penetration-testing .capability-card,
  body.page-physical-penetration-testing .modern-security-card,
  body.page-physical-penetration-testing .home-capabilities-card,
  body.page-physical-penetration-testing .bg-white.card-shadow.border,
  body.page-physical-penetration-testing .modal-content {
    padding: 20px !important;
  }
  body.page-physical-penetration-testing .service-overview,
  body.page-physical-penetration-testing .service-detail-grid {
    padding-left: 0;
    padding-right: 0;
  }
  body.page-physical-penetration-testing .service-section-container {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  body.page-physical-penetration-testing .service-section-row,
  body.page-physical-penetration-testing .service-detail-stack {
    margin-left: 0 !important;
    margin-right: 0 !important;
    --bs-gutter-x: 0;
  }
  body.page-physical-penetration-testing .service-detail-stack {
    display: block;
    padding-top: 32px !important;
  }
  body.page-physical-penetration-testing .service-detail-stack > [class*=col-] {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
    padding-left: 0;
    padding-right: 0;
  }
  body.page-physical-penetration-testing .service-detail-stack > [class*=col-] + [class*=col-] {
    margin-top: 20px;
  }
  body.page-physical-penetration-testing .service-detail-stack .bg-white.card-shadow.border {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  body.page-physical-penetration-testing .service-footnote {
    padding-top: 20px;
  }
  body.page-physical-penetration-testing .service-footnote-desktop {
    display: none;
  }
  body.page-physical-penetration-testing .service-footnote-mobile {
    display: block;
  }
  body.page-physical-penetration-testing .overview-cta-desktop {
    display: none !important;
  }
  body.page-physical-penetration-testing .overview-cta-mobile {
    display: flex !important;
    justify-content: center;
    padding-top: 20px;
  }
  body.page-physical-penetration-testing .hero-carousel.hero-tight .section-pad {
    padding-top: 1.8rem !important;
    padding-bottom: 1.8rem !important;
  }
  body.page-physical-penetration-testing .other-services-section {
    height: auto;
  }
  body.page-physical-penetration-testing .other-services-grid {
    margin-left: 0 !important;
    margin-right: 0 !important;
    --bs-gutter-x: 0;
  }
  body.page-physical-penetration-testing .other-services-item {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
  body.page-physical-penetration-testing .other-services-item + .other-services-item {
    margin-top: 20px;
  }
  body.page-physical-penetration-testing .hero-cta {
    flex-direction: column;
    align-items: center;
    row-gap: 12px;
    column-gap: 0;
    margin-top: 3rem !important;
  }
  body.page-physical-penetration-testing .mobile-flat {
    border: none !important;
    box-shadow: none !important;
  }
  body.page-physical-penetration-testing footer .container.px-0 {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  body.page-physical-penetration-testing footer .row.gy-4,
  body.page-physical-penetration-testing footer .row.gy-3 {
    justify-content: center;
    text-align: center;
    column-gap: 0 !important;
    margin-left: 0;
    margin-right: 0;
  }
  body.page-physical-penetration-testing footer .row.gy-4 > [class*=col-],
  body.page-physical-penetration-testing footer .row.gy-3 > [class*=col-] {
    display: flex;
    flex-direction: column;
    align-items: center !important;
    text-align: center !important;
  }
  body.page-physical-penetration-testing footer a {
    font-size: 12px;
  }
  body.page-physical-penetration-testing footer .col-lg-4.d-flex.flex-column.text-end.align-items-end,
  body.page-physical-penetration-testing footer .col-lg-4.d-flex.flex-column.text-end.align-items-end.p-0,
  body.page-physical-penetration-testing footer .col-lg-4.d-flex.flex-column.text-end.align-items-end.p-3 {
    align-items: center !important;
    text-align: center !important;
  }
  body.page-physical-penetration-testing footer form.d-flex.align-items-center.gap-2.ms-auto {
    width: 100%;
    max-width: 320px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    justify-content: center;
  }
  body.page-physical-penetration-testing footer form.d-flex.align-items-center.gap-2.ms-auto input {
    width: 100% !important;
    margin-left: 0 !important;
  }
  body.page-physical-penetration-testing footer img[alt="Artemis Global"] {
    margin-top: 30px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}
@media (max-width: 767.98px) {
  body.page-physical-penetration-testing .service-section-row {
    --bs-gutter-y: 8px;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  body.page-physical-penetration-testing .other-services-grid {
    --bs-gutter-x: 1rem;
    margin-left: calc(-0.5 * var(--bs-gutter-x)) !important;
    margin-right: calc(-0.5 * var(--bs-gutter-x)) !important;
  }
  body.page-physical-penetration-testing .other-services-item {
    width: auto;
    max-width: none;
    flex: 0 0 auto;
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    padding-right: calc(var(--bs-gutter-x) * 0.5);
  }
  body.page-physical-penetration-testing .other-services-item + .other-services-item {
    margin-top: 0;
  }
}
body.page-physical-penetration-testing .hero-carousel .carousel-indicators {
  bottom: 18px;
}

body.page-physical-penetration-testing .section-pad {
  padding: 4.5rem 0;
}

body.page-physical-penetration-testing .card-shadow {
  box-shadow: none;
}

body.page-physical-penetration-testing .card-shadow,
body.page-physical-penetration-testing .rounded-4,
body.page-physical-penetration-testing .pillar-item,
body.page-physical-penetration-testing .pillar-card,
body.page-physical-penetration-testing .modern-security-card,
body.page-physical-penetration-testing .home-capabilities-card,
body.page-physical-penetration-testing .capability-card,
body.page-physical-penetration-testing .mobile-flat,
body.page-physical-penetration-testing .modal-content {
  border-radius: 0 !important;
}

body.page-physical-penetration-testing .small-caps {
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: calc(0.78rem * var(--cinzel-scale));
  color: rgba(255, 255, 255, 0.75);
  font-family: var(--font-display);
}

body.page-physical-penetration-testing .icon-badge {
  width: 66px;
  height: 66px;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 66px;
  background: transparent;
  border: none;
  color: var(--gold);
  font-weight: 800;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: calc(1.5em * var(--cinzel-scale));
}

body.page-physical-penetration-testing .contact-icon {
  font-size: 48px;
}

body.page-physical-penetration-testing .contact-icon-email {
  font-size: 69.12px;
}

body.page-physical-penetration-testing .contact-icon-globe {
  font-size: 57.6px;
}

body.page-physical-penetration-testing .contact-icon-phone {
  transform: scale(0.8925);
}

body.page-physical-penetration-testing .creed-icon {
  font-size: calc(5.85em * var(--cinzel-scale));
  width: auto;
  height: auto;
}

body.page-physical-penetration-testing .creed-title {
  font-size: calc(1.5rem * var(--cinzel-scale) * 2.028);
}

body.page-physical-penetration-testing .creed-header {
  gap: 10px;
  margin-top: -40px;
  margin-bottom: calc(1rem - 60px);
}

body.page-physical-penetration-testing .hero-icon {
  font-size: calc(1.5em * var(--cinzel-scale) * 1.6);
}

body.page-physical-penetration-testing .contact-section {
  background: radial-gradient(900px 400px at 90% 0%, rgba(18, 26, 42, 0.08), transparent 60%), linear-gradient(180deg, #ffffff 0%, #f0ece3 100%);
  border-top: 1px solid rgba(18, 26, 42, 0.08);
}

body.page-physical-penetration-testing .eyebrow {
  font-family: var(--font-body);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
}

body.page-physical-penetration-testing .inspired-copy {
  font-size: 16px;
}

body.page-physical-penetration-testing .hero-copy {
  margin-bottom: 0;
  padding-bottom: 20px;
}

body.page-physical-penetration-testing .hero-summary {
  margin-top: 16px;
}

body.page-physical-penetration-testing .pillar-item {
  padding: 0.75rem;
  border-radius: 0;
  transition: background-color 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
  border: 1px solid transparent;
}

body.page-physical-penetration-testing .pillar-item.is-highlight {
  background: rgba(200, 169, 107, 0.16);
  border-color: rgba(200, 169, 107, 0.65);
  box-shadow: inset 4px 0 0 var(--gold);
}

body.page-physical-penetration-testing .hero .pillar-item.is-highlight .h5 {
  color: var(--gold);
}

body.page-physical-penetration-testing .pillar-item.is-highlight .icon-badge img {
  filter: brightness(1.35) contrast(1.05);
}

body.page-physical-penetration-testing footer a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}

body.page-physical-penetration-testing .navbar-nav {
  gap: 1rem;
}

body.page-physical-penetration-testing .nav-link {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 14px;
}

body.page-physical-penetration-testing .nav-link:hover,
body.page-physical-penetration-testing .nav-link:focus {
  color: var(--gold);
}

body.page-physical-penetration-testing .nav-link.active,
body.page-physical-penetration-testing .nav-link[aria-current=page],
body.page-physical-penetration-testing .dropdown-item.active,
body.page-physical-penetration-testing .dropdown-item[aria-current=page] {
  color: var(--gold);
  background-color: transparent;
}

body.page-physical-penetration-testing .dropdown-menu {
  border-radius: 0;
}

body.page-physical-penetration-testing .navbar .nav-cta {
  font-size: 14px;
  font-weight: 700;
  border-radius: 0;
  white-space: nowrap;
}

body.page-physical-penetration-testing .footer-contractor-badge {
  width: min(100%, 360px);
  max-width: 360px;
  flex: 0 0 auto;
  text-align: left;
}

body.page-physical-penetration-testing .footer-contractor-badge-card {
  width: 100%;
  padding: 12px 14px 14px;
  border: 1px solid var(--gold);
  border-radius: 14px;
  background: linear-gradient(180deg, #141922 0%, #0d1116 100%);
  box-shadow: inset 0 0 0 1px var(--gold);
}

body.page-physical-penetration-testing .footer-contractor-badge-layout {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 14px;
}

body.page-physical-penetration-testing .footer-contractor-badge-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  flex: 1 1 auto;
}

body.page-physical-penetration-testing .footer-contractor-badge-brand-copy {
  min-width: 0;
  flex: 1 1 auto;
  padding-right: 2px;
}

body.page-physical-penetration-testing .footer-contractor-badge-meta {
  min-width: 108px;
  flex: 0 0 auto;
  padding-left: 2px;
}

body.page-physical-penetration-testing .footer-contractor-badge-emblem {
  width: 60px;
  height: auto;
  flex: 0 0 auto;
  display: block;
}

body.page-physical-penetration-testing .footer-contractor-badge-title {
  color: #f4e6be;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  letter-spacing: 0.07em;
  line-height: 1.1;
  white-space: nowrap;
}

body.page-physical-penetration-testing .footer-contractor-badge-copy {
  margin-top: 6px;
  color: #c8a96b;
  font-size: 9px;
  letter-spacing: 0.14em;
  line-height: 1.15;
  text-transform: uppercase;
  font-weight: 700;
}

body.page-physical-penetration-testing .footer-contractor-badge-copy span {
  display: block;
}

body.page-physical-penetration-testing .footer-contractor-badge-copy span + span {
  margin-top: 1px;
}

body.page-physical-penetration-testing .footer-contractor-badge-status {
  margin-top: 4px;
  color: #f7f0de;
  font-size: 12px;
  letter-spacing: 0.04em;
  line-height: 1.05;
  text-transform: uppercase;
  font-weight: 700;
}

body.page-physical-penetration-testing .footer-contractor-badge-divider {
  width: 1px;
  height: auto;
  align-self: stretch;
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold) 100%);
}

body.page-physical-penetration-testing .footer-contractor-badge-heading {
  color: #d7d0bd;
  font-size: 8.5px;
  letter-spacing: 0.12em;
  line-height: 1.25;
  text-transform: uppercase;
  font-weight: 600;
}

body.page-physical-penetration-testing .footer-contractor-badge-heading span {
  display: block;
}

body.page-physical-penetration-testing .footer-contractor-badge-codes {
  margin-top: 10px;
  display: grid;
  gap: 4px;
  color: #f7f0de;
}

body.page-physical-penetration-testing .footer-contractor-badge-code {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: baseline;
  gap: 8px;
}

body.page-physical-penetration-testing .footer-contractor-badge-code-label {
  color: #c8a96b;
  font-size: 9px;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 700;
}

body.page-physical-penetration-testing .footer-contractor-badge-code-value {
  min-width: 0;
  font-size: 10px;
  line-height: 1.1;
  font-weight: 700;
  white-space: nowrap;
  overflow-wrap: normal;
}

body.page-physical-penetration-testing .footer-contractor-badge-code-value--short {
  font-size: 11px;
}

body.page-physical-penetration-testing .footer-link-cluster {
  min-width: 0;
}

body.page-physical-penetration-testing .footer-link-column {
  flex: 0 0 auto;
  min-width: 0;
}

body.page-physical-penetration-testing .footer-capabilities-column {
  min-width: 0;
}

body.page-physical-penetration-testing .footer-capabilities-grid > div {
  min-width: 0;
}

body.page-physical-penetration-testing .footer-main-column,
body.page-physical-penetration-testing .footer-brand-column {
  min-width: 0;
}

body.page-physical-penetration-testing .footer-brand-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

body.page-physical-penetration-testing .footer-wordmark {
  width: 250px;
  height: auto;
  margin-bottom: 10px;
  display: block;
  margin-left: auto;
}

body.page-physical-penetration-testing .footer-copyright {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

body.page-physical-penetration-testing .footer-copyright-break {
  display: block;
}

@media (max-width: 1199.98px) {
  body.page-physical-penetration-testing .footer-link-row {
    justify-content: center;
    row-gap: 24px;
  }
  body.page-physical-penetration-testing .footer-link-row > .col,
  body.page-physical-penetration-testing .footer-link-row > .col-md-auto {
    flex: 0 0 100%;
    max-width: 100%;
    display: flex;
    justify-content: center;
  }
  body.page-physical-penetration-testing .footer-main-column,
  body.page-physical-penetration-testing .footer-brand-column {
    flex: 0 0 100%;
    max-width: 100%;
  }
  body.page-physical-penetration-testing .footer-contractor-badge {
    width: min(100%, 360px);
    max-width: 360px !important;
  }
  body.page-physical-penetration-testing .footer-link-cluster {
    width: 100%;
    padding-top: 0;
    flex-direction: column !important;
    align-items: center !important;
    gap: 24px !important;
    text-align: center;
  }
  body.page-physical-penetration-testing .footer-link-column {
    width: 100%;
    align-items: center;
    text-align: center;
  }
  body.page-physical-penetration-testing .footer-link-column .mt-2,
  body.page-physical-penetration-testing .footer-capabilities-grid {
    align-items: center !important;
  }
  body.page-physical-penetration-testing .footer-brand-column {
    padding-top: 24px !important;
    align-items: center !important;
    text-align: center !important;
  }
  body.page-physical-penetration-testing .footer-brand-block {
    align-items: center;
  }
  body.page-physical-penetration-testing .footer-wordmark {
    margin-left: 0;
    margin-right: 0;
  }
  body.page-physical-penetration-testing .footer-copyright {
    white-space: nowrap;
  }
  body.page-physical-penetration-testing .footer-copyright-break {
    display: inline;
    margin-left: 0.35em;
  }
}
@media (min-width: 1200px) {
  body.page-physical-penetration-testing .footer-link-row {
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
    column-gap: clamp(28px, 3vw, 44px) !important;
  }
  body.page-physical-penetration-testing .footer-link-cluster {
    flex: 1 1 auto;
    display: flex !important;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start !important;
    gap: 50px !important;
    padding-top: 2px;
  }
  body.page-physical-penetration-testing .footer-link-column {
    width: auto;
    flex: 0 0 auto;
  }
  body.page-physical-penetration-testing .footer-link-column .mt-2,
  body.page-physical-penetration-testing .footer-capabilities-grid {
    align-items: flex-start !important;
  }
}
body.page-physical-penetration-testing footer a:hover {
  color: #c8a96b;
  text-decoration: underline;
}

body.page-physical-penetration-testing .form-control:focus,
body.page-physical-penetration-testing .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 0.25rem var(--gold);
}

body.page-physical-penetration-testing .form-control,
body.page-physical-penetration-testing .form-select,
body.page-physical-penetration-testing textarea.form-control {
  border-color: rgba(18, 26, 42, 0.35);
  border-radius: 0;
}

@media (min-width: 992px) {
  body.page-physical-penetration-testing .service-overview {
    min-height: 560px;
  }
}
body.page-physical-penetration-testing .service-detail-list {
  padding-left: 10px;
  margin-left: 0;
  list-style-position: inside;
}

body.page-physical-penetration-testing .service-detail-list li {
  margin-bottom: 0.5rem;
}

body.page-physical-penetration-testing .service-detail-list li:last-child {
  margin-bottom: 0;
}

body.page-physical-penetration-testing .service-card-title {
  margin: 0 !important;
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #2f3744;
}

body.page-physical-penetration-testing .service-detail-panel {
  padding: 0;
  overflow: hidden;
  border-color: #c8a96b !important;
}

body.page-physical-penetration-testing .service-detail-panel-blue {
  border-color: var(--gold) !important;
}

body.page-physical-penetration-testing .service-detail-panel-header {
  height: 30px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  background: var(--gold);
  border-bottom: 1px solid var(--gold);
}

body.page-physical-penetration-testing .service-detail-panel-blue .service-detail-panel-header {
  background: var(--gold);
}

body.page-physical-penetration-testing .service-detail-panel-header .service-card-title {
  font-size: 14px;
  color: #fff;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
}

body.page-physical-penetration-testing .service-detail-panel-body {
  padding: 18px 24px 24px;
}

body.page-physical-penetration-testing .service-detail-kicker {
  margin-bottom: 8px;
  color: var(--slate);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body.page-physical-penetration-testing .service-detail-summary {
  margin-bottom: 1.25rem;
  color: #2f3744;
  font-size: 15px;
  line-height: 1.65;
}

body.page-physical-penetration-testing .service-detail-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

body.page-physical-penetration-testing .service-detail-section + .service-detail-section {
  border-left: 1px solid rgba(18, 26, 42, 0.12);
  padding-left: 24px;
}

body.page-physical-penetration-testing .service-detail-subtitle {
  margin-bottom: 12px;
  color: #c8a96b;
  font-size: 16px;
  font-weight: 700;
}

body.page-physical-penetration-testing .service-card-icon {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #c8a96b;
  flex: 0 0 30px;
}

body.page-physical-penetration-testing .service-detail-panel-header .service-card-icon {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  color: #fff;
}

body.page-physical-penetration-testing .service-card-icon svg {
  width: 30px;
  height: 30px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.page-physical-penetration-testing .service-detail-panel-header .service-card-icon svg {
  width: 16px;
  height: 16px;
}

body.page-physical-penetration-testing .capability-card {
  text-align: center;
  padding-top: 10px;
}

body.page-physical-penetration-testing .capability-card .fw-semibold {
  justify-content: center;
}

body.page-physical-penetration-testing .capability-glyph img {
  width: 50px;
  height: auto;
  object-fit: contain;
  display: block;
}

body.page-physical-penetration-testing .capability-glyph {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.9rem;
  line-height: 1;
  -webkit-clip-path: none;
  clip-path: none;
}

body.page-physical-penetration-testing .capability-body {
  line-height: 27px;
  padding-top: 8px;
  padding-bottom: 8px;
}

body.page-physical-penetration-testing .capability-cta {
  margin-top: 1rem;
  margin-bottom: 18px;
  font-size: 14px;
  font-weight: 600;
}

body.page-physical-penetration-testing .capability-cta a {
  color: var(--gold);
  text-decoration: none;
}

body.page-physical-penetration-testing .capability-cta a:hover,
body.page-physical-penetration-testing .capability-cta a:focus-visible {
  color: var(--gold-2);
  text-decoration: underline;
}

body.page-physical-penetration-testing ol.service-detail-list {
  padding-left: 10px;
  margin-left: 0;
  list-style-position: inside;
}

body.page-physical-penetration-testing ol.service-detail-list ::marker {
  font-weight: 700;
}

body.page-physical-penetration-testing .service-footnote {
  font-size: 12px;
}

@media (max-width: 767.98px) {
  body.page-physical-penetration-testing .service-detail-split {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  body.page-physical-penetration-testing .service-detail-section + .service-detail-section {
    border-left: none;
    border-top: 1px solid rgba(18, 26, 42, 0.12);
    padding-left: 0;
    padding-top: 18px;
  }
}
@media (min-width: 992px) {
  body.page-physical-penetration-testing .service-footnote-desktop {
    display: block;
    padding-top: 15px;
  }
  body.page-physical-penetration-testing .service-footnote-mobile {
    display: none;
  }
  body.page-physical-penetration-testing .overview-cta-mobile {
    display: none !important;
  }
}
/* security-assessments-consulting.scss */
body.page-security-assessments-consulting {
  color: #2f3744;
  font-family: var(--font-body);
  background: var(--ink);
  overflow-x: hidden;
}

body.page-security-assessments-consulting .text-secondary {
  color: #2f3744 !important;
}

body.page-security-assessments-consulting .gap-2 {
  gap: 0.75rem !important;
}

body.page-security-assessments-consulting h1,
body.page-security-assessments-consulting h2,
body.page-security-assessments-consulting h3,
body.page-security-assessments-consulting h4,
body.page-security-assessments-consulting h5,
body.page-security-assessments-consulting h6 {
  font-family: var(--font-display);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

body.page-security-assessments-consulting h5,
body.page-security-assessments-consulting .h5 {
  font-weight: 700;
}

body.page-security-assessments-consulting h1.display-5 {
  font-size: calc(3rem * var(--cinzel-scale) - 2px);
}

body.page-security-assessments-consulting h1.display-6,
body.page-security-assessments-consulting h2.display-6 {
  font-size: calc(2.5rem * var(--cinzel-scale));
}

body.page-security-assessments-consulting .hero-headline {
  font-weight: 700;
}

body.page-security-assessments-consulting .hero-headline {
  font-size: calc(3rem * var(--cinzel-scale) + 1px);
}

body.page-security-assessments-consulting h2.h5 {
  font-size: calc(1.25rem * var(--cinzel-scale));
}

body.page-security-assessments-consulting h3.h4 {
  font-size: calc(1.5rem * var(--cinzel-scale));
}

body.page-security-assessments-consulting .modal .modal-content h3.h4 {
  font-size: 28px;
}

body.page-security-assessments-consulting .briefing-cta {
  font-size: 15px;
  padding: 0.85rem 2.5rem;
  border-radius: 0;
}

body.page-security-assessments-consulting .modal-headline {
  font-size: 28px;
}

body.page-security-assessments-consulting .btn:not(.btn-sm) {
  font-size: 15px;
  padding: 0.85rem 2.5rem;
}

body.page-security-assessments-consulting .modal .briefing-consent {
  font-size: 11px;
  text-align: center;
  margin-top: 10px;
}

body.page-security-assessments-consulting .modal .briefing-actions {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  margin-bottom: 10px;
}

body.page-security-assessments-consulting .modal .briefing-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

body.page-security-assessments-consulting .modal .briefing-row .briefing-actions {
  margin: 0;
  justify-content: flex-end;
}

body.page-security-assessments-consulting .modal .briefing-row .briefing-consent {
  margin: 0;
  text-align: left;
}

body.page-security-assessments-consulting .logo-font {
  font-family: var(--font-display);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: calc(1em * var(--cinzel-scale));
}

body.page-security-assessments-consulting .navbar-brand {
  min-width: 0;
  gap: 0.8rem !important;
}

body.page-security-assessments-consulting .brand-logo {
  height: auto;
  width: var(--brand-logo-width);
  display: block;
}

body.page-security-assessments-consulting .brand-title {
  width: var(--brand-title-width);
  max-width: 100%;
  height: auto;
  display: block;
}

body.page-security-assessments-consulting .brand-stack {
  width: max-content;
  max-width: var(--brand-title-width);
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

body.page-security-assessments-consulting .brand-stack .small-caps {
  font-size: var(--tagline-size);
  font-family: var(--font-body);
  border-top: 1px solid var(--gold);
  text-align: center;
  padding-top: 8px;
  margin-top: 6px;
}

@media (max-width: 991.98px) {
  body.page-security-assessments-consulting .navbar > .container {
    flex-wrap: wrap;
    align-items: center;
    position: relative;
  }
  body.page-security-assessments-consulting .navbar-brand {
    flex: 1 1 auto;
    max-width: calc(100% - 76px);
  }
  body.page-security-assessments-consulting .navbar-toggler {
    flex: 0 0 auto;
    margin-left: 12px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }
  body.page-security-assessments-consulting .brand-stack .small-caps {
    display: none;
  }
  body.page-security-assessments-consulting .brand-stack {
    max-width: min(100vw - 148px, var(--brand-title-width) * 1.5625);
  }
  body.page-security-assessments-consulting .brand-title {
    width: min(100vw - 148px, var(--brand-title-width) * 1.5625);
  }
  body.page-security-assessments-consulting .brand-logo {
    width: calc(var(--brand-logo-width) * 1.25);
  }
  body.page-security-assessments-consulting .navbar-collapse {
    position: static;
    flex-basis: 100%;
    width: 100%;
    margin-top: 14px;
    padding: 4px 0 12px;
    text-align: right;
    z-index: auto;
  }
  body.page-security-assessments-consulting .navbar-collapse.show {
    display: block;
  }
  body.page-security-assessments-consulting .navbar-nav {
    width: 100%;
    align-items: flex-end;
  }
  body.page-security-assessments-consulting .navbar-nav .nav-link {
    padding-right: 0;
    text-align: right;
  }
  body.page-security-assessments-consulting .navbar-collapse .dropdown-menu {
    position: static;
    min-width: 0;
    margin-top: 0.25rem;
    padding: 0;
    background: transparent;
    border: 0;
    text-align: right;
  }
  body.page-security-assessments-consulting .navbar-collapse .dropdown-item {
    padding-right: 0;
    padding-left: 1rem;
    text-align: right;
  }
  body.page-security-assessments-consulting .navbar-collapse .dropdown-menu li + li .dropdown-item {
    color: var(--gold);
  }
  body.page-security-assessments-consulting .navbar-collapse .dropdown-menu li:first-child .dropdown-item {
    color: #fff;
  }
  body.page-security-assessments-consulting .navbar-collapse .d-flex.ms-lg-3.gap-2 {
    width: 100%;
    justify-content: flex-end;
    margin-top: 1rem;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  body.page-security-assessments-consulting .brand-stack .small-caps {
    font-size: var(--tagline-size);
  }
}
body.page-security-assessments-consulting .navbar .brand-logo,
body.page-security-assessments-consulting .navbar .brand-title {
  filter: none;
}

body.page-security-assessments-consulting .bg-ink {
  background: var(--ink);
}

body.page-security-assessments-consulting .bg-header {
  background: var(--header-ink);
}

body.page-security-assessments-consulting .text-gold {
  color: var(--gold);
}

body.page-security-assessments-consulting .btn-gold {
  --bs-btn-bg: var(--gold);
  --bs-btn-border-color: #b88f33;
  --bs-btn-color: #111;
  --bs-btn-hover-bg: transparent;
  --bs-btn-hover-border-color: var(--gold);
  --bs-btn-hover-color: var(--gold);
  --bs-btn-active-bg: transparent;
  --bs-btn-active-border-color: var(--gold);
  --bs-btn-active-color: var(--gold);
  --bs-btn-border-width: 1px;
  font-weight: 600;
  background-color: var(--gold);
  background-image: linear-gradient(180deg, var(--gold) 0%, var(--gold-2) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35), 0 6px 12px rgba(0, 0, 0, 0.18);
  text-shadow: none;
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, background-image 0.2s ease, box-shadow 0.2s ease;
}

body.page-security-assessments-consulting .btn-gold:hover,
body.page-security-assessments-consulting .btn-gold:focus-visible {
  background-color: transparent;
  background-image: none;
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: inset 0 0 0 1px rgba(200, 169, 107, 0.28);
}

body.page-security-assessments-consulting .btn-gold:active {
  background-color: transparent;
  background-image: none;
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: inset 0 0 0 1px rgba(200, 169, 107, 0.36);
}

body.page-security-assessments-consulting .btn-outline-gold {
  --bs-btn-color: var(--gold);
  --bs-btn-border-color: var(--gold);
  --bs-btn-hover-bg: var(--gold);
  --bs-btn-hover-border-color: #c79b38;
  --bs-btn-hover-color: #111;
  font-weight: 600;
  background-color: transparent;
}

body.page-security-assessments-consulting .btn-outline-gold:hover,
body.page-security-assessments-consulting .btn-outline-gold:focus-visible {
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.35) 0%, #e2c06b 55%, #b88732 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35), 0 8px 14px rgba(0, 0, 0, 0.2);
}

body.page-security-assessments-consulting .btn {
  font-family: "Open Sans", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.072em;
  font-size: 16px;
  font-weight: 700;
  border-radius: 0;
  box-shadow: none;
}

body.page-security-assessments-consulting .btn:not(.btn-sm):not(.nav-cta) {
  font-size: 15px;
}

body.page-security-assessments-consulting .btn:focus,
body.page-security-assessments-consulting .btn:focus-visible,
body.page-security-assessments-consulting .btn:active {
  box-shadow: none;
}

body.page-security-assessments-consulting .hero .btn.btn-lg:not(.briefing-cta),
body.page-security-assessments-consulting .hero-cta .btn:not(.btn-sm),
body.page-security-assessments-consulting .service-overview .overview-cta-desktop .btn:not(.btn-sm),
body.page-security-assessments-consulting .overview-cta-mobile .btn:not(.btn-sm),
body.page-security-assessments-consulting .sow-hero .btn:not(.btn-sm) {
  padding: 0.65rem 1.75rem;
}

body.page-security-assessments-consulting .btn.btn-gold {
  background-color: var(--gold);
  background-image: linear-gradient(180deg, var(--gold) 0%, var(--gold-2) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35), 0 6px 12px rgba(0, 0, 0, 0.18);
}

body.page-security-assessments-consulting .btn.btn-gold:hover,
body.page-security-assessments-consulting .btn.btn-gold:focus-visible {
  background-color: transparent;
  background-image: none;
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: inset 0 0 0 1px rgba(200, 169, 107, 0.28);
}

body.page-security-assessments-consulting .btn.btn-gold:active {
  background-color: transparent;
  background-image: none;
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: inset 0 0 0 1px rgba(200, 169, 107, 0.36);
}

body.page-security-assessments-consulting .cta-link {
  color: var(--gold);
  text-decoration: underline;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
}

body.page-security-assessments-consulting .cta-link:hover {
  color: #c8a96b;
  text-decoration: none;
}

body.page-security-assessments-consulting .menu-size {
  font-size: 14px;
}

body.page-security-assessments-consulting .marble {
  background: linear-gradient(180deg, #f7f4ec 0%, #ede8dc 100%);
}

body.page-security-assessments-consulting .hero {
  position: relative;
  overflow: hidden;
  color: #c8a96b;
  height: 550px;
  background: linear-gradient(135deg, rgba(11, 19, 32, 0.92) 0%, rgba(18, 26, 42, 0.92) 45%, rgba(11, 19, 32, 0.92) 100%), url("../images/slider-3.jpg") center 40%/cover no-repeat, radial-gradient(900px 500px at 15% 10%, var(--gold), transparent 60%), radial-gradient(900px 500px at 85% 25%, var(--gold), transparent 60%), linear-gradient(135deg, #0b1320 0%, #121a2a 45%, #0b1320 100%);
}

body.page-security-assessments-consulting .other-services-section {
  height: 550px;
}

body.page-security-assessments-consulting .hero-slide {
  background: linear-gradient(135deg, rgba(11, 19, 32, 0.92) 0%, rgba(18, 26, 42, 0.92) 45%, rgba(11, 19, 32, 0.92) 100%), var(--hero-image) center 40%/cover no-repeat, radial-gradient(900px 500px at 15% 10%, var(--gold), transparent 60%), radial-gradient(900px 500px at 85% 25%, var(--gold), transparent 60%), linear-gradient(135deg, #0b1320 0%, #121a2a 45%, #0b1320 100%);
}

body.page-security-assessments-consulting .hero-carousel,
body.page-security-assessments-consulting .hero-carousel .carousel-inner,
body.page-security-assessments-consulting .hero-carousel .carousel-item {
  height: 100%;
}

body.page-security-assessments-consulting .hero-carousel {
  min-height: calc(70vh - 100px);
}

body.page-security-assessments-consulting .hero-carousel .carousel-item {
  min-height: calc(70vh - 100px);
}

body.page-security-assessments-consulting .hero-carousel .carousel-item.active,
body.page-security-assessments-consulting .hero-carousel .carousel-item-next,
body.page-security-assessments-consulting .hero-carousel .carousel-item-prev {
  display: flex;
  align-items: center;
}

@media (max-width: 991.98px) {
  body.page-security-assessments-consulting .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  body.page-security-assessments-consulting .capability-card,
  body.page-security-assessments-consulting .modern-security-card,
  body.page-security-assessments-consulting .home-capabilities-card,
  body.page-security-assessments-consulting .bg-white.card-shadow.border,
  body.page-security-assessments-consulting .modal-content {
    padding: 20px !important;
  }
  body.page-security-assessments-consulting .service-overview,
  body.page-security-assessments-consulting .service-detail-grid {
    padding-left: 0;
    padding-right: 0;
  }
  body.page-security-assessments-consulting .service-section-container {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  body.page-security-assessments-consulting .service-section-row,
  body.page-security-assessments-consulting .service-detail-stack {
    margin-left: 0 !important;
    margin-right: 0 !important;
    --bs-gutter-x: 0;
  }
  body.page-security-assessments-consulting .service-detail-stack {
    display: block;
    padding-top: 32px !important;
  }
  body.page-security-assessments-consulting .service-detail-stack > [class*=col-] {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
    padding-left: 0;
    padding-right: 0;
  }
  body.page-security-assessments-consulting .service-detail-stack > [class*=col-] + [class*=col-] {
    margin-top: 20px;
  }
  body.page-security-assessments-consulting .service-detail-stack .bg-white.card-shadow.border {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  body.page-security-assessments-consulting footer .container.px-0 {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  body.page-security-assessments-consulting footer .row.gy-4,
  body.page-security-assessments-consulting footer .row.gy-3 {
    justify-content: center;
    text-align: center;
    column-gap: 0 !important;
    margin-left: 0;
    margin-right: 0;
  }
  body.page-security-assessments-consulting footer .row.gy-4 > [class*=col-],
  body.page-security-assessments-consulting footer .row.gy-3 > [class*=col-] {
    display: flex;
    flex-direction: column;
    align-items: center !important;
    text-align: center !important;
  }
  body.page-security-assessments-consulting footer a {
    font-size: 12px;
  }
  body.page-security-assessments-consulting footer .col-lg-4.d-flex.flex-column.text-end.align-items-end,
  body.page-security-assessments-consulting footer .col-lg-4.d-flex.flex-column.text-end.align-items-end.p-0,
  body.page-security-assessments-consulting footer .col-lg-4.d-flex.flex-column.text-end.align-items-end.p-3 {
    align-items: center !important;
    text-align: center !important;
  }
  body.page-security-assessments-consulting footer form.d-flex.align-items-center.gap-2.ms-auto {
    width: 100%;
    max-width: 320px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    justify-content: center;
  }
  body.page-security-assessments-consulting footer form.d-flex.align-items-center.gap-2.ms-auto input {
    width: 100% !important;
    margin-left: 0 !important;
  }
  body.page-security-assessments-consulting footer img[alt="Artemis Global"] {
    margin-top: 30px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  body.page-security-assessments-consulting .hero-carousel.hero-tight .section-pad {
    padding-top: 1.8rem !important;
    padding-bottom: 1.8rem !important;
  }
  body.page-security-assessments-consulting .other-services-section {
    height: auto;
  }
  body.page-security-assessments-consulting .other-services-grid {
    margin-left: 0 !important;
    margin-right: 0 !important;
    --bs-gutter-x: 0;
  }
  body.page-security-assessments-consulting .other-services-item {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
  body.page-security-assessments-consulting .other-services-item + .other-services-item {
    margin-top: 20px;
  }
  body.page-security-assessments-consulting .overview-cta-desktop {
    display: none !important;
  }
  body.page-security-assessments-consulting .overview-cta-mobile {
    display: flex !important;
    justify-content: center;
    padding-top: 20px;
  }
  body.page-security-assessments-consulting .hero-cta {
    flex-direction: column;
    align-items: center;
    row-gap: 12px;
    column-gap: 0;
    margin-top: 3rem !important;
  }
  body.page-security-assessments-consulting .mobile-flat {
    border: none !important;
    box-shadow: none !important;
  }
}
@media (max-width: 767.98px) {
  body.page-security-assessments-consulting .service-section-row {
    --bs-gutter-y: 8px;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  body.page-security-assessments-consulting .other-services-grid {
    --bs-gutter-x: 1rem;
    margin-left: calc(-0.5 * var(--bs-gutter-x)) !important;
    margin-right: calc(-0.5 * var(--bs-gutter-x)) !important;
  }
  body.page-security-assessments-consulting .other-services-item {
    width: auto;
    max-width: none;
    flex: 0 0 auto;
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    padding-right: calc(var(--bs-gutter-x) * 0.5);
  }
  body.page-security-assessments-consulting .other-services-item + .other-services-item {
    margin-top: 0;
  }
}
body.page-security-assessments-consulting .hero-carousel .carousel-indicators {
  bottom: 18px;
}

body.page-security-assessments-consulting .section-pad {
  padding: 4.5rem 0;
}

body.page-security-assessments-consulting .card-shadow {
  box-shadow: none;
}

body.page-security-assessments-consulting .card-shadow,
body.page-security-assessments-consulting .rounded-4,
body.page-security-assessments-consulting .pillar-item,
body.page-security-assessments-consulting .pillar-card,
body.page-security-assessments-consulting .modern-security-card,
body.page-security-assessments-consulting .home-capabilities-card,
body.page-security-assessments-consulting .capability-card,
body.page-security-assessments-consulting .mobile-flat,
body.page-security-assessments-consulting .modal-content {
  border-radius: 0 !important;
}

body.page-security-assessments-consulting .small-caps {
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: calc(0.78rem * var(--cinzel-scale));
  color: rgba(255, 255, 255, 0.75);
  font-family: var(--font-display);
}

body.page-security-assessments-consulting .icon-badge {
  width: 66px;
  height: 66px;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 66px;
  background: transparent;
  border: none;
  color: var(--gold);
  font-weight: 800;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: calc(1.5em * var(--cinzel-scale));
}

body.page-security-assessments-consulting .contact-icon {
  font-size: 48px;
}

body.page-security-assessments-consulting .contact-icon-email {
  font-size: 69.12px;
}

body.page-security-assessments-consulting .contact-icon-globe {
  font-size: 57.6px;
}

body.page-security-assessments-consulting .contact-icon-phone {
  transform: scale(0.8925);
}

body.page-security-assessments-consulting .creed-icon {
  font-size: calc(5.85em * var(--cinzel-scale));
  width: auto;
  height: auto;
}

body.page-security-assessments-consulting .creed-title {
  font-size: calc(1.5rem * var(--cinzel-scale) * 2.028);
}

body.page-security-assessments-consulting .creed-header {
  gap: 10px;
  margin-top: -40px;
  margin-bottom: calc(1rem - 60px);
}

body.page-security-assessments-consulting .hero-icon {
  font-size: calc(1.5em * var(--cinzel-scale) * 1.6);
}

body.page-security-assessments-consulting .contact-section {
  background: radial-gradient(900px 400px at 90% 0%, rgba(18, 26, 42, 0.08), transparent 60%), linear-gradient(180deg, #ffffff 0%, #f0ece3 100%);
  border-top: 1px solid rgba(18, 26, 42, 0.08);
}

body.page-security-assessments-consulting .eyebrow {
  font-family: var(--font-body);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
}

body.page-security-assessments-consulting .inspired-copy {
  font-size: 16px;
}

body.page-security-assessments-consulting .hero-copy {
  margin-bottom: 0;
  padding-bottom: 20px;
}

body.page-security-assessments-consulting .hero-summary {
  margin-top: 16px;
}

body.page-security-assessments-consulting .pillar-item {
  padding: 0.75rem;
  border-radius: 0;
  transition: background-color 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
  border: 1px solid transparent;
}

body.page-security-assessments-consulting .pillar-item.is-highlight {
  background: rgba(200, 169, 107, 0.16);
  border-color: rgba(200, 169, 107, 0.65);
  box-shadow: inset 4px 0 0 var(--gold);
}

body.page-security-assessments-consulting .hero .pillar-item.is-highlight .h5 {
  color: var(--gold);
}

body.page-security-assessments-consulting .pillar-item.is-highlight .icon-badge img {
  filter: brightness(1.35) contrast(1.05);
}

body.page-security-assessments-consulting footer a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}

body.page-security-assessments-consulting .navbar-nav {
  gap: 1rem;
}

body.page-security-assessments-consulting .nav-link {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 14px;
}

body.page-security-assessments-consulting .nav-link:hover,
body.page-security-assessments-consulting .nav-link:focus {
  color: var(--gold);
}

body.page-security-assessments-consulting .nav-link.active,
body.page-security-assessments-consulting .nav-link[aria-current=page],
body.page-security-assessments-consulting .dropdown-item.active,
body.page-security-assessments-consulting .dropdown-item[aria-current=page] {
  color: var(--gold);
  background-color: transparent;
}

body.page-security-assessments-consulting .dropdown-menu {
  border-radius: 0;
}

body.page-security-assessments-consulting .navbar .nav-cta {
  font-size: 14px;
  font-weight: 700;
  border-radius: 0;
  white-space: nowrap;
}

body.page-security-assessments-consulting .footer-contractor-badge {
  width: min(100%, 360px);
  max-width: 360px;
  flex: 0 0 auto;
  text-align: left;
}

body.page-security-assessments-consulting .footer-contractor-badge-card {
  width: 100%;
  padding: 12px 14px 14px;
  border: 1px solid var(--gold);
  border-radius: 14px;
  background: linear-gradient(180deg, #141922 0%, #0d1116 100%);
  box-shadow: inset 0 0 0 1px var(--gold);
}

body.page-security-assessments-consulting .footer-contractor-badge-layout {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 14px;
}

body.page-security-assessments-consulting .footer-contractor-badge-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  flex: 1 1 auto;
}

body.page-security-assessments-consulting .footer-contractor-badge-brand-copy {
  min-width: 0;
  flex: 1 1 auto;
  padding-right: 2px;
}

body.page-security-assessments-consulting .footer-contractor-badge-meta {
  min-width: 108px;
  flex: 0 0 auto;
  padding-left: 2px;
}

body.page-security-assessments-consulting .footer-contractor-badge-emblem {
  width: 60px;
  height: auto;
  flex: 0 0 auto;
  display: block;
}

body.page-security-assessments-consulting .footer-contractor-badge-title {
  color: #f4e6be;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  letter-spacing: 0.07em;
  line-height: 1.1;
  white-space: nowrap;
}

body.page-security-assessments-consulting .footer-contractor-badge-copy {
  margin-top: 6px;
  color: #c8a96b;
  font-size: 9px;
  letter-spacing: 0.14em;
  line-height: 1.15;
  text-transform: uppercase;
  font-weight: 700;
}

body.page-security-assessments-consulting .footer-contractor-badge-copy span {
  display: block;
}

body.page-security-assessments-consulting .footer-contractor-badge-copy span + span {
  margin-top: 1px;
}

body.page-security-assessments-consulting .footer-contractor-badge-status {
  margin-top: 4px;
  color: #f7f0de;
  font-size: 12px;
  letter-spacing: 0.04em;
  line-height: 1.05;
  text-transform: uppercase;
  font-weight: 700;
}

body.page-security-assessments-consulting .footer-contractor-badge-divider {
  width: 1px;
  height: auto;
  align-self: stretch;
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold) 100%);
}

body.page-security-assessments-consulting .footer-contractor-badge-heading {
  color: #d7d0bd;
  font-size: 8.5px;
  letter-spacing: 0.12em;
  line-height: 1.25;
  text-transform: uppercase;
  font-weight: 600;
}

body.page-security-assessments-consulting .footer-contractor-badge-heading span {
  display: block;
}

body.page-security-assessments-consulting .footer-contractor-badge-codes {
  margin-top: 10px;
  display: grid;
  gap: 4px;
  color: #f7f0de;
}

body.page-security-assessments-consulting .footer-contractor-badge-code {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: baseline;
  gap: 8px;
}

body.page-security-assessments-consulting .footer-contractor-badge-code-label {
  color: #c8a96b;
  font-size: 9px;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 700;
}

body.page-security-assessments-consulting .footer-contractor-badge-code-value {
  min-width: 0;
  font-size: 10px;
  line-height: 1.1;
  font-weight: 700;
  white-space: nowrap;
  overflow-wrap: normal;
}

body.page-security-assessments-consulting .footer-contractor-badge-code-value--short {
  font-size: 11px;
}

body.page-security-assessments-consulting .footer-link-cluster {
  min-width: 0;
}

body.page-security-assessments-consulting .footer-link-column {
  flex: 0 0 auto;
  min-width: 0;
}

body.page-security-assessments-consulting .footer-capabilities-column {
  min-width: 0;
}

body.page-security-assessments-consulting .footer-capabilities-grid > div {
  min-width: 0;
}

body.page-security-assessments-consulting .footer-main-column,
body.page-security-assessments-consulting .footer-brand-column {
  min-width: 0;
}

body.page-security-assessments-consulting .footer-brand-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

body.page-security-assessments-consulting .footer-wordmark {
  width: 250px;
  height: auto;
  margin-bottom: 10px;
  display: block;
  margin-left: auto;
}

body.page-security-assessments-consulting .footer-copyright {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

body.page-security-assessments-consulting .footer-copyright-break {
  display: block;
}

@media (max-width: 1199.98px) {
  body.page-security-assessments-consulting .footer-link-row {
    justify-content: center;
    row-gap: 24px;
  }
  body.page-security-assessments-consulting .footer-link-row > .col,
  body.page-security-assessments-consulting .footer-link-row > .col-md-auto {
    flex: 0 0 100%;
    max-width: 100%;
    display: flex;
    justify-content: center;
  }
  body.page-security-assessments-consulting .footer-main-column,
  body.page-security-assessments-consulting .footer-brand-column {
    flex: 0 0 100%;
    max-width: 100%;
  }
  body.page-security-assessments-consulting .footer-contractor-badge {
    width: min(100%, 360px);
    max-width: 360px !important;
  }
  body.page-security-assessments-consulting .footer-link-cluster {
    width: 100%;
    padding-top: 0;
    flex-direction: column !important;
    align-items: center !important;
    gap: 24px !important;
    text-align: center;
  }
  body.page-security-assessments-consulting .footer-link-column {
    width: 100%;
    align-items: center;
    text-align: center;
  }
  body.page-security-assessments-consulting .footer-link-column .mt-2,
  body.page-security-assessments-consulting .footer-capabilities-grid {
    align-items: center !important;
  }
  body.page-security-assessments-consulting .footer-brand-column {
    padding-top: 24px !important;
    align-items: center !important;
    text-align: center !important;
  }
  body.page-security-assessments-consulting .footer-brand-block {
    align-items: center;
  }
  body.page-security-assessments-consulting .footer-wordmark {
    margin-left: 0;
    margin-right: 0;
  }
  body.page-security-assessments-consulting .footer-copyright {
    white-space: nowrap;
  }
  body.page-security-assessments-consulting .footer-copyright-break {
    display: inline;
    margin-left: 0.35em;
  }
}
@media (min-width: 1200px) {
  body.page-security-assessments-consulting .footer-link-row {
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
    column-gap: clamp(28px, 3vw, 44px) !important;
  }
  body.page-security-assessments-consulting .footer-link-cluster {
    flex: 1 1 auto;
    display: flex !important;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start !important;
    gap: 50px !important;
    padding-top: 2px;
  }
  body.page-security-assessments-consulting .footer-link-column {
    width: auto;
    flex: 0 0 auto;
  }
  body.page-security-assessments-consulting .footer-link-column .mt-2,
  body.page-security-assessments-consulting .footer-capabilities-grid {
    align-items: flex-start !important;
  }
}
body.page-security-assessments-consulting footer a:hover {
  color: #c8a96b;
  text-decoration: underline;
}

body.page-security-assessments-consulting .form-control:focus,
body.page-security-assessments-consulting .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 0.25rem var(--gold);
}

body.page-security-assessments-consulting .form-control,
body.page-security-assessments-consulting .form-select,
body.page-security-assessments-consulting textarea.form-control {
  border-color: rgba(18, 26, 42, 0.35);
  border-radius: 0;
}

@media (min-width: 992px) {
  body.page-security-assessments-consulting .service-overview {
    min-height: 560px;
  }
}
body.page-security-assessments-consulting .service-detail-list {
  padding-left: 10px;
  margin-left: 0;
  list-style-position: inside;
}

body.page-security-assessments-consulting .service-detail-list li {
  margin-bottom: 0.5rem;
}

body.page-security-assessments-consulting .service-detail-list li:last-child {
  margin-bottom: 0;
}

body.page-security-assessments-consulting .service-card-title {
  margin: 0 !important;
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
}

body.page-security-assessments-consulting .service-detail-panel {
  padding: 0;
  overflow: hidden;
  border-color: var(--gold) !important;
}

body.page-security-assessments-consulting .service-detail-panel-blue {
  border-color: var(--gold) !important;
}

body.page-security-assessments-consulting .service-detail-panel-header {
  height: 30px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  background: var(--gold);
}

body.page-security-assessments-consulting .service-detail-panel-blue .service-detail-panel-header {
  background: var(--gold);
}

body.page-security-assessments-consulting .service-detail-panel-header .service-card-title {
  font-size: 14px;
  color: #fff;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
}

body.page-security-assessments-consulting .service-detail-panel-body {
  padding: 18px 24px 24px;
}

body.page-security-assessments-consulting .service-detail-kicker {
  margin-bottom: 8px;
  color: var(--slate);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body.page-security-assessments-consulting .service-detail-summary {
  margin-bottom: 1.25rem;
  color: #2f3744;
  font-size: 15px;
  line-height: 1.65;
}

body.page-security-assessments-consulting .service-detail-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

body.page-security-assessments-consulting .service-detail-section + .service-detail-section {
  border-left: 1px solid rgba(18, 26, 42, 0.12);
  padding-left: 24px;
}

body.page-security-assessments-consulting .service-detail-subtitle {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
}

body.page-security-assessments-consulting .service-card-icon {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex: 0 0 30px;
}

body.page-security-assessments-consulting .service-detail-panel-header .service-card-icon {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  color: #fff;
}

body.page-security-assessments-consulting .service-card-icon svg {
  width: 30px;
  height: 30px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.page-security-assessments-consulting .service-detail-panel-header .service-card-icon svg {
  width: 16px;
  height: 16px;
}

body.page-security-assessments-consulting .capability-card {
  text-align: center;
  padding-top: 10px;
}

body.page-security-assessments-consulting .capability-card .fw-semibold {
  justify-content: center;
}

body.page-security-assessments-consulting .capability-glyph img {
  width: 50px;
  height: auto;
  object-fit: contain;
  display: block;
}

body.page-security-assessments-consulting .capability-glyph {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.9rem;
  line-height: 1;
  -webkit-clip-path: none;
  clip-path: none;
}

body.page-security-assessments-consulting .capability-body {
  line-height: 27px;
  padding-top: 8px;
  padding-bottom: 8px;
}

body.page-security-assessments-consulting .capability-cta {
  margin-top: 1rem;
  margin-bottom: 18px;
  font-size: 14px;
  font-weight: 600;
}

body.page-security-assessments-consulting .capability-cta a {
  color: var(--gold);
  text-decoration: none;
}

body.page-security-assessments-consulting .capability-cta a:hover,
body.page-security-assessments-consulting .capability-cta a:focus-visible {
  color: var(--gold-2);
  text-decoration: underline;
}

body.page-security-assessments-consulting ol.service-detail-list {
  padding-left: 10px;
  margin-left: 0;
  list-style-position: inside;
}

body.page-security-assessments-consulting ol.service-detail-list ::marker {
  font-weight: 700;
}

@media (min-width: 992px) {
  body.page-security-assessments-consulting .overview-cta-mobile {
    display: none !important;
  }
}
@media (max-width: 767.98px) {
  body.page-security-assessments-consulting .service-detail-split {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  body.page-security-assessments-consulting .service-detail-section + .service-detail-section {
    border-left: none;
    border-top: 1px solid rgba(18, 26, 42, 0.12);
    padding-left: 0;
    padding-top: 18px;
  }
}
/* sow.scss */
body.page-sow {
  color: var(--ink);
  font-family: var(--font-body);
  background: var(--ink);
  overflow-x: hidden;
}

body.page-sow .gap-2 {
  gap: 0.75rem !important;
}

body.page-sow h1,
body.page-sow h2,
body.page-sow h3,
body.page-sow h4,
body.page-sow h5,
body.page-sow h6 {
  font-family: var(--font-display);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

body.page-sow h5,
body.page-sow .h5 {
  font-weight: 700;
}

body.page-sow h1.display-5 {
  font-size: calc(3rem * var(--cinzel-scale) - 2px);
}

body.page-sow h2.display-6 {
  font-size: calc(2.5rem * var(--cinzel-scale));
}

body.page-sow h2.h5 {
  font-size: calc(1.25rem * var(--cinzel-scale));
}

body.page-sow h3.h4 {
  font-size: calc(1.5rem * var(--cinzel-scale));
}

body.page-sow .modal .modal-content h3.h4 {
  font-size: 28px;
}

body.page-sow .briefing-cta {
  font-size: 15px;
  padding: 0.85rem 2.5rem;
  border-radius: 0;
}

body.page-sow .modal .briefing-consent {
  font-size: 11px;
  text-align: center;
  margin-top: 10px;
}

body.page-sow .modal .briefing-actions {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  margin-bottom: 10px;
}

body.page-sow .modal .briefing-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

body.page-sow .modal .briefing-row .briefing-actions {
  margin: 0;
  justify-content: flex-end;
}

body.page-sow .modal .briefing-row .briefing-consent {
  margin: 0;
  text-align: left;
}

body.page-sow .logo-font {
  font-family: var(--font-display);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: calc(1em * var(--cinzel-scale));
}

body.page-sow .navbar-brand {
  min-width: 0;
  gap: 0.8rem !important;
}

body.page-sow .brand-logo {
  height: auto;
  width: var(--brand-logo-width);
  display: block;
}

body.page-sow .brand-title {
  width: var(--brand-title-width);
  max-width: 100%;
  height: auto;
  display: block;
}

body.page-sow .brand-stack {
  width: max-content;
  max-width: var(--brand-title-width);
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

body.page-sow .brand-stack .small-caps {
  font-size: var(--tagline-size);
  font-family: var(--font-body);
  border-top: 1px solid var(--gold);
  text-align: center;
  padding-top: 8px;
  margin-top: 6px;
}

@media (max-width: 991.98px) {
  body.page-sow .navbar > .container {
    flex-wrap: wrap;
    align-items: center;
    position: relative;
  }
  body.page-sow .navbar-brand {
    flex: 1 1 auto;
    max-width: calc(100% - 76px);
  }
  body.page-sow .navbar-toggler {
    flex: 0 0 auto;
    margin-left: 12px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }
  body.page-sow .brand-stack .small-caps {
    display: none;
  }
  body.page-sow .brand-stack {
    max-width: min(100vw - 148px, var(--brand-title-width) * 1.5625);
  }
  body.page-sow .brand-title {
    width: min(100vw - 148px, var(--brand-title-width) * 1.5625);
  }
  body.page-sow .brand-logo {
    width: calc(var(--brand-logo-width) * 1.25);
  }
  body.page-sow .navbar-collapse {
    position: static;
    flex-basis: 100%;
    width: 100%;
    margin-top: 14px;
    padding: 4px 0 12px;
    text-align: right;
    z-index: auto;
  }
  body.page-sow .navbar-collapse.show {
    display: block;
  }
  body.page-sow .navbar-nav {
    width: 100%;
    align-items: flex-end;
  }
  body.page-sow .navbar-nav .nav-link {
    padding-right: 0;
    text-align: right;
  }
  body.page-sow .navbar-collapse .dropdown-menu {
    position: static;
    min-width: 0;
    margin-top: 0.25rem;
    padding: 0;
    background: transparent;
    border: 0;
    text-align: right;
  }
  body.page-sow .navbar-collapse .dropdown-item {
    padding-right: 0;
    padding-left: 1rem;
    text-align: right;
  }
  body.page-sow .navbar-collapse .dropdown-menu li + li .dropdown-item {
    color: var(--gold);
  }
  body.page-sow .navbar-collapse .dropdown-menu li:first-child .dropdown-item {
    color: #fff;
  }
  body.page-sow .navbar-collapse .d-flex.ms-lg-3.gap-2 {
    width: 100%;
    justify-content: flex-end;
    margin-top: 1rem;
  }
  body.page-sow .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  body.page-sow #services > .container.section-pad {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  body.page-sow .capability-card,
  body.page-sow .modern-security-card,
  body.page-sow .home-capabilities-card,
  body.page-sow .bg-white.card-shadow.border,
  body.page-sow .modal-content {
    padding: 20px !important;
  }
  body.page-sow #services > .container.section-pad > .row,
  body.page-sow #services .row.g-3 {
    margin-left: 0 !important;
    margin-right: 0 !important;
    --bs-gutter-x: 0;
  }
  body.page-sow footer .container.px-0 {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  body.page-sow footer .row.gy-4,
  body.page-sow footer .row.gy-3 {
    justify-content: center;
    text-align: center;
    column-gap: 0 !important;
    margin-left: 0;
    margin-right: 0;
  }
  body.page-sow footer .row.gy-4 > [class*=col-],
  body.page-sow footer .row.gy-3 > [class*=col-] {
    display: flex;
    flex-direction: column;
    align-items: center !important;
    text-align: center !important;
  }
  body.page-sow footer a {
    font-size: 12px;
  }
  body.page-sow footer .col-lg-4.d-flex.flex-column.text-end.align-items-end,
  body.page-sow footer .col-lg-4.d-flex.flex-column.text-end.align-items-end.p-0,
  body.page-sow footer .col-lg-4.d-flex.flex-column.text-end.align-items-end.p-3 {
    align-items: center !important;
    text-align: center !important;
  }
  body.page-sow footer form.d-flex.align-items-center.gap-2.ms-auto {
    width: 100%;
    max-width: 320px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    justify-content: center;
  }
  body.page-sow footer form.d-flex.align-items-center.gap-2.ms-auto input {
    width: 100% !important;
    margin-left: 0 !important;
  }
  body.page-sow footer img[alt="Artemis Global"] {
    margin-top: 30px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  body.page-sow .brand-stack .small-caps {
    font-size: var(--tagline-size);
  }
}
body.page-sow .navbar .brand-logo,
body.page-sow .navbar .brand-title {
  filter: none;
}

body.page-sow .bg-ink {
  background: var(--ink);
}

body.page-sow .bg-header {
  background: var(--header-ink);
}

body.page-sow .text-gold {
  color: var(--gold);
}

body.page-sow .btn-gold {
  --bs-btn-bg: var(--gold);
  --bs-btn-border-color: #b88f33;
  --bs-btn-color: #111;
  --bs-btn-hover-bg: transparent;
  --bs-btn-hover-border-color: var(--gold);
  --bs-btn-hover-color: var(--gold);
  --bs-btn-active-bg: transparent;
  --bs-btn-active-border-color: var(--gold);
  --bs-btn-active-color: var(--gold);
  --bs-btn-border-width: 1px;
  font-weight: 600;
  background-color: var(--gold);
  background-image: linear-gradient(180deg, var(--gold) 0%, var(--gold-2) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35), 0 6px 12px rgba(0, 0, 0, 0.18);
  text-shadow: none;
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, background-image 0.2s ease, box-shadow 0.2s ease;
}

body.page-sow .btn-gold:hover,
body.page-sow .btn-gold:focus-visible {
  background-color: transparent;
  background-image: none;
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: inset 0 0 0 1px rgba(200, 169, 107, 0.28);
}

body.page-sow .btn-gold:active {
  background-color: transparent;
  background-image: none;
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: inset 0 0 0 1px rgba(200, 169, 107, 0.36);
}

body.page-sow .btn-outline-gold {
  --bs-btn-color: var(--gold);
  --bs-btn-border-color: var(--gold);
  --bs-btn-hover-bg: var(--gold);
  --bs-btn-hover-border-color: #c79b38;
  --bs-btn-hover-color: #111;
  font-weight: 600;
  background-color: transparent;
}

body.page-sow .btn-outline-gold:hover,
body.page-sow .btn-outline-gold:focus-visible {
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.35) 0%, #e2c06b 55%, #b88732 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35), 0 8px 14px rgba(0, 0, 0, 0.2);
}

body.page-sow .btn {
  font-family: "Open Sans", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.072em;
  font-size: 16px;
  font-weight: 700;
  border-radius: 0;
  box-shadow: none;
}

body.page-sow .btn:not(.btn-sm):not(.nav-cta) {
  font-size: 15px;
}

body.page-sow .btn:focus,
body.page-sow .btn:focus-visible,
body.page-sow .btn:active {
  box-shadow: none;
}

body.page-sow .hero .btn.btn-lg:not(.briefing-cta),
body.page-sow .hero-cta .btn:not(.btn-sm),
body.page-sow .service-overview .overview-cta-desktop .btn:not(.btn-sm),
body.page-sow .overview-cta-mobile .btn:not(.btn-sm),
body.page-sow .sow-hero .btn:not(.btn-sm) {
  padding: 0.65rem 1.75rem;
}

body.page-sow .btn.btn-gold {
  background-color: var(--gold);
  background-image: linear-gradient(180deg, var(--gold) 0%, var(--gold-2) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35), 0 6px 12px rgba(0, 0, 0, 0.18);
}

body.page-sow .btn.btn-gold:hover,
body.page-sow .btn.btn-gold:focus-visible {
  background-color: transparent;
  background-image: none;
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: inset 0 0 0 1px rgba(200, 169, 107, 0.28);
}

body.page-sow .btn.btn-gold:active {
  background-color: transparent;
  background-image: none;
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: inset 0 0 0 1px rgba(200, 169, 107, 0.36);
}

body.page-sow .cta-link {
  color: var(--gold);
  text-decoration: underline;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
}

body.page-sow .cta-link:hover {
  color: #c8a96b;
  text-decoration: none;
}

body.page-sow .menu-size {
  font-size: 14px;
}

body.page-sow .marble {
  background: linear-gradient(180deg, #f7f4ec 0%, #ede8dc 100%);
}

body.page-sow .hero {
  position: relative;
  overflow: hidden;
  color: #c8a96b;
  background: linear-gradient(135deg, rgba(11, 19, 32, 0.92) 0%, rgba(18, 26, 42, 0.92) 45%, rgba(11, 19, 32, 0.92) 100%), url("../images/slider-3.jpg") center 40%/cover no-repeat, radial-gradient(900px 500px at 15% 10%, var(--gold), transparent 60%), radial-gradient(900px 500px at 85% 25%, var(--gold), transparent 60%), linear-gradient(135deg, #0b1320 0%, #121a2a 45%, #0b1320 100%);
}

body.page-sow .hero-slab .creed-header {
  margin-top: 0;
  margin-bottom: 1rem;
}

body.page-sow .meander {
  height: 14px;
  background: linear-gradient(90deg, transparent 0 10px, var(--gold) 10px 12px, transparent 12px 22px, var(--gold) 22px 24px, transparent 24px 34px, var(--gold) 34px 36px, transparent 36px 46px, var(--gold) 46px 48px, transparent 48px 58px, var(--gold) 58px 60px, transparent 60px 70px);
  opacity: 0.9;
}

body.page-sow .section-pad {
  padding: 4.5rem 0;
}

body.page-sow .card-shadow {
  box-shadow: none;
}

body.page-sow .card-shadow,
body.page-sow .rounded-4,
body.page-sow .pillar-item,
body.page-sow .pillar-card,
body.page-sow .modern-security-card,
body.page-sow .home-capabilities-card,
body.page-sow .capability-card,
body.page-sow .mobile-flat,
body.page-sow .modal-content {
  border-radius: 0 !important;
}

body.page-sow .small-caps {
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: calc(0.78rem * var(--cinzel-scale));
  color: rgba(255, 255, 255, 0.75);
  font-family: var(--font-display);
}

body.page-sow .icon-badge {
  width: 66px;
  height: 66px;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 66px;
  background: transparent;
  border: none;
  color: var(--gold);
  font-weight: 800;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: calc(1.5em * var(--cinzel-scale));
}

body.page-sow .icon-badge img,
body.page-sow .capability-glyph img {
  width: 50px;
  height: auto;
  object-fit: contain;
  display: block;
}

body.page-sow .capability-glyph {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.9rem;
  line-height: 1;
  -webkit-clip-path: none;
  clip-path: none;
}

body.page-sow .capability-card {
  text-align: center;
  padding-top: 10px;
}

body.page-sow .capability-card .fw-semibold {
  justify-content: center;
}

body.page-sow .capability-col {
  flex: 0 0 100%;
  max-width: 100%;
}

body.page-sow .capability-list {
  margin: 12px 0 0;
  padding: 0;
  list-style: disc;
  list-style-position: inside;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.875rem;
  line-height: 1.5;
  text-align: left;
}

body.page-sow .capability-list li + li {
  margin-top: 6px;
}

body.page-sow .capability-body {
  line-height: 27px;
  padding-top: 8px;
  padding-bottom: 8px;
}

body.page-sow .capabilities-summary {
  max-width: 100%;
  line-height: 24px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 992px) {
  body.page-sow .capabilities-summary {
    max-width: 80%;
  }
}
@media (min-width: 768px) {
  body.page-sow .capability-col {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (min-width: 1200px) {
  body.page-sow .capability-col {
    flex: 0 0 20%;
    max-width: 20%;
  }
}
body.page-sow .capability-cta {
  margin-top: 1rem;
  margin-bottom: 18px;
  font-size: 14px;
  font-weight: 600;
}

body.page-sow .capability-cta a {
  color: var(--gold);
  text-decoration: none;
}

body.page-sow .capability-cta a:hover,
body.page-sow .capability-cta a:focus-visible {
  color: var(--gold-2);
  text-decoration: none;
}

body.page-sow .contact-icon {
  font-size: 48px;
}

body.page-sow .contact-icon-email {
  font-size: 69.12px;
}

body.page-sow .contact-icon-globe {
  font-size: 57.6px;
}

body.page-sow .contact-icon-phone {
  transform: scale(0.8925);
}

body.page-sow .creed-icon {
  font-size: calc(5.85em * var(--cinzel-scale));
  width: auto;
  height: auto;
}

body.page-sow .creed-title {
  font-size: calc(1.5rem * var(--cinzel-scale) * 2.028);
}

body.page-sow .creed-header {
  gap: 10px;
  margin-top: -40px;
  margin-bottom: calc(1rem - 60px);
}

body.page-sow .hero-icon {
  font-size: calc(1.5em * var(--cinzel-scale) * 1.6);
}

body.page-sow .contact-section {
  background: radial-gradient(900px 400px at 90% 0%, rgba(18, 26, 42, 0.08), transparent 60%), linear-gradient(180deg, #ffffff 0%, #f0ece3 100%);
  border-top: 1px solid rgba(18, 26, 42, 0.08);
}

body.page-sow .eyebrow {
  font-family: var(--font-body);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
}

body.page-sow .inspired-copy {
  font-size: 16px;
}

body.page-sow footer a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}

body.page-sow .navbar-nav {
  gap: 1rem;
}

body.page-sow .nav-link {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 14px;
}

body.page-sow .nav-link:hover,
body.page-sow .nav-link:focus {
  color: var(--gold);
}

body.page-sow .nav-link.active,
body.page-sow .nav-link[aria-current=page],
body.page-sow .dropdown-item.active,
body.page-sow .dropdown-item[aria-current=page] {
  color: var(--gold);
  background-color: transparent;
}

body.page-sow .dropdown-menu {
  border-radius: 0;
}

body.page-sow .navbar .nav-cta {
  font-size: 14px;
  font-weight: 700;
  border-radius: 0;
  white-space: nowrap;
}

body.page-sow .footer-contractor-badge {
  width: min(100%, 360px);
  max-width: 360px;
  flex: 0 0 auto;
  text-align: left;
}

body.page-sow .footer-contractor-badge-card {
  width: 100%;
  padding: 12px 14px 14px;
  border: 1px solid var(--gold);
  border-radius: 14px;
  background: linear-gradient(180deg, #141922 0%, #0d1116 100%);
  box-shadow: inset 0 0 0 1px var(--gold);
}

body.page-sow .footer-contractor-badge-layout {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 14px;
}

body.page-sow .footer-contractor-badge-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  flex: 1 1 auto;
}

body.page-sow .footer-contractor-badge-brand-copy {
  min-width: 0;
  flex: 1 1 auto;
  padding-right: 2px;
}

body.page-sow .footer-contractor-badge-meta {
  min-width: 108px;
  flex: 0 0 auto;
  padding-left: 2px;
}

body.page-sow .footer-contractor-badge-emblem {
  width: 60px;
  height: auto;
  flex: 0 0 auto;
  display: block;
}

body.page-sow .footer-contractor-badge-title {
  color: #f4e6be;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  letter-spacing: 0.07em;
  line-height: 1.1;
  white-space: nowrap;
}

body.page-sow .footer-contractor-badge-copy {
  margin-top: 6px;
  color: #c8a96b;
  font-size: 9px;
  letter-spacing: 0.14em;
  line-height: 1.15;
  text-transform: uppercase;
  font-weight: 700;
}

body.page-sow .footer-contractor-badge-copy span {
  display: block;
}

body.page-sow .footer-contractor-badge-copy span + span {
  margin-top: 1px;
}

body.page-sow .footer-contractor-badge-status {
  margin-top: 4px;
  color: #f7f0de;
  font-size: 12px;
  letter-spacing: 0.04em;
  line-height: 1.05;
  text-transform: uppercase;
  font-weight: 700;
}

body.page-sow .footer-contractor-badge-divider {
  width: 1px;
  height: auto;
  align-self: stretch;
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold) 100%);
}

body.page-sow .footer-contractor-badge-heading {
  color: #d7d0bd;
  font-size: 8.5px;
  letter-spacing: 0.12em;
  line-height: 1.25;
  text-transform: uppercase;
  font-weight: 600;
}

body.page-sow .footer-contractor-badge-heading span {
  display: block;
}

body.page-sow .footer-contractor-badge-codes {
  margin-top: 10px;
  display: grid;
  gap: 4px;
  color: #f7f0de;
}

body.page-sow .footer-contractor-badge-code {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: baseline;
  gap: 8px;
}

body.page-sow .footer-contractor-badge-code-label {
  color: #c8a96b;
  font-size: 9px;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 700;
}

body.page-sow .footer-contractor-badge-code-value {
  min-width: 0;
  font-size: 10px;
  line-height: 1.1;
  font-weight: 700;
  white-space: nowrap;
  overflow-wrap: normal;
}

body.page-sow .footer-contractor-badge-code-value--short {
  font-size: 11px;
}

body.page-sow .footer-link-cluster {
  min-width: 0;
}

body.page-sow .footer-link-column {
  flex: 0 0 auto;
  min-width: 0;
}

body.page-sow .footer-capabilities-column {
  min-width: 0;
}

body.page-sow .footer-capabilities-grid > div {
  min-width: 0;
}

body.page-sow .footer-main-column,
body.page-sow .footer-brand-column {
  min-width: 0;
}

body.page-sow .footer-brand-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

body.page-sow .footer-wordmark {
  width: 250px;
  height: auto;
  margin-bottom: 10px;
  display: block;
  margin-left: auto;
}

body.page-sow .footer-copyright {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

body.page-sow .footer-copyright-break {
  display: block;
}

@media (max-width: 1199.98px) {
  body.page-sow .footer-link-row {
    justify-content: center;
    row-gap: 24px;
  }
  body.page-sow .footer-link-row > .col,
  body.page-sow .footer-link-row > .col-md-auto {
    flex: 0 0 100%;
    max-width: 100%;
    display: flex;
    justify-content: center;
  }
  body.page-sow .footer-main-column,
  body.page-sow .footer-brand-column {
    flex: 0 0 100%;
    max-width: 100%;
  }
  body.page-sow .footer-contractor-badge {
    width: min(100%, 360px);
    max-width: 360px !important;
  }
  body.page-sow .footer-link-cluster {
    width: 100%;
    padding-top: 0;
    flex-direction: column !important;
    align-items: center !important;
    gap: 24px !important;
    text-align: center;
  }
  body.page-sow .footer-link-column {
    width: 100%;
    align-items: center;
    text-align: center;
  }
  body.page-sow .footer-link-column .mt-2,
  body.page-sow .footer-capabilities-grid {
    align-items: center !important;
  }
  body.page-sow .footer-brand-column {
    padding-top: 24px !important;
    align-items: center !important;
    text-align: center !important;
  }
  body.page-sow .footer-brand-block {
    align-items: center;
  }
  body.page-sow .footer-wordmark {
    margin-left: 0;
    margin-right: 0;
  }
  body.page-sow .footer-copyright {
    white-space: nowrap;
  }
  body.page-sow .footer-copyright-break {
    display: inline;
    margin-left: 0.35em;
  }
}
@media (min-width: 1200px) {
  body.page-sow .footer-link-row {
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
    column-gap: clamp(28px, 3vw, 44px) !important;
  }
  body.page-sow .footer-link-cluster {
    flex: 1 1 auto;
    display: flex !important;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start !important;
    gap: 50px !important;
    padding-top: 2px;
  }
  body.page-sow .footer-link-column {
    width: auto;
    flex: 0 0 auto;
  }
  body.page-sow .footer-link-column .mt-2,
  body.page-sow .footer-capabilities-grid {
    align-items: flex-start !important;
  }
}
body.page-sow footer a:hover {
  color: #c8a96b;
  text-decoration: underline;
}

body.page-sow .form-control:focus,
body.page-sow .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 0.25rem var(--gold);
}

body.page-sow .form-control,
body.page-sow .form-select,
body.page-sow textarea.form-control {
  border-color: rgba(18, 26, 42, 0.35);
  border-radius: 0;
}

body.page-sow.sow-page {
  background: linear-gradient(180deg, #0b1320 0%, #0b1320 390px, #efe9dd 390px, #efe9dd 100%);
}

body.page-sow .sow-hero {
  position: relative;
  overflow: hidden;
  padding: 5.5rem 0 4rem;
  background: linear-gradient(135deg, rgba(11, 19, 32, 0.96) 0%, rgba(18, 28, 43, 0.93) 45%, rgba(11, 19, 32, 0.98) 100%), radial-gradient(900px 440px at 10% 0%, var(--gold), transparent 58%), radial-gradient(900px 480px at 86% 20%, var(--gold), transparent 62%);
}

body.page-sow .sow-hero::after {
  content: "";
  position: absolute;
  right: -72px;
  bottom: -118px;
  width: 360px;
  height: 360px;
  background: url("../images/logo-artemis-emblem.png") center/contain no-repeat;
  opacity: 0.06;
  transform: rotate(-11deg);
  pointer-events: none;
}

body.page-sow .sow-hero-deck {
  max-width: 20ch;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.2vw, 1.7rem);
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.84);
}

body.page-sow .sow-hero-note {
  border-left: 1px solid var(--gold);
  padding-left: 1.5rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.8;
  font-size: 15px;
}

body.page-sow .sow-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

body.page-sow .sow-chip {
  border: 1px solid var(--gold);
  color: rgba(255, 255, 255, 0.82);
  padding: 10px 14px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.03);
}

body.page-sow .sow-stage {
  padding: 0 0 5.5rem;
  background: linear-gradient(180deg, rgba(11, 19, 32, 0) 0%, rgba(11, 19, 32, 0) 40px, #efe9dd 40px, #efe9dd 100%);
}

body.page-sow .sow-paper-wrap {
  margin-top: -2rem;
}

body.page-sow .sow-paper {
  position: relative;
  background: linear-gradient(180deg, #fbf7ef 0%, #f2ecdf 100%);
  color: #17202d;
  border: 1px solid rgba(18, 26, 42, 0.14);
  box-shadow: 0 28px 52px rgba(7, 10, 15, 0.18);
  padding: clamp(24px, 4vw, 52px);
}

body.page-sow .sow-paper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #876620 0%, #d7b45f 45%, #876620 100%);
}

body.page-sow .sow-paper::after {
  content: "";
  position: absolute;
  top: 30px;
  right: 30px;
  width: 120px;
  height: 120px;
  background: url("../images/logo-artemis-emblem.png") center/contain no-repeat;
  opacity: 0.035;
  pointer-events: none;
}

body.page-sow .sow-doc-header {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(240px, 1fr);
  gap: 2rem;
  align-items: start;
}

body.page-sow .sow-doc-label {
  color: #8d6f2f;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

body.page-sow .sow-doc-title {
  color: #121a2a;
  font-size: clamp(1.85rem, 3.6vw, 2.9rem);
  line-height: 1.08;
  margin: 0.4rem 0 0.75rem;
}

body.page-sow .sow-doc-subtitle {
  color: rgba(23, 32, 45, 0.84);
  line-height: 1.85;
  max-width: 58ch;
  margin-bottom: 0;
}

body.page-sow .sow-meta-grid {
  display: grid;
  gap: 14px;
}

body.page-sow .sow-meta-item {
  padding-top: 10px;
  border-top: 1px solid rgba(18, 26, 42, 0.12);
}

body.page-sow .sow-meta-item span {
  display: block;
  color: rgba(23, 32, 45, 0.62);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 3px;
}

body.page-sow .sow-meta-item strong {
  font-size: 14px;
  font-weight: 700;
  color: #121a2a;
}

body.page-sow .sow-note-band {
  margin-top: 2rem;
  padding: 1rem 0 0;
  border-top: 1px solid rgba(18, 26, 42, 0.12);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.9fr);
  gap: 1.5rem;
  color: rgba(23, 32, 45, 0.74);
  font-size: 14px;
  line-height: 1.75;
}

body.page-sow .sow-note-band strong {
  color: #121a2a;
}

body.page-sow .sow-toc {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(18, 26, 42, 0.12);
}

body.page-sow .sow-toc a {
  color: #17202d;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.page-sow .sow-toc a:hover,
body.page-sow .sow-toc a:focus-visible {
  color: var(--gold-2);
}

body.page-sow .sow-section {
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(18, 26, 42, 0.12);
}

body.page-sow .sow-section-head {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1rem;
  align-items: start;
  margin-bottom: 1rem;
}

body.page-sow .sow-section-no {
  font-family: var(--font-display);
  color: #9a7630;
  font-size: 1.25rem;
  line-height: 1;
  letter-spacing: 0.08em;
  padding-top: 2px;
}

body.page-sow .sow-section h2 {
  margin: 0;
  color: #121a2a;
  font-size: 1.3rem;
  line-height: 1.25;
}

body.page-sow .sow-section p,
body.page-sow .sow-section li {
  color: rgba(23, 32, 45, 0.84);
  line-height: 1.78;
  font-size: 15px;
}

body.page-sow .sow-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem 2rem;
}

body.page-sow .sow-subblock {
  padding-top: 12px;
  border-top: 1px solid rgba(18, 26, 42, 0.1);
}

body.page-sow .sow-subblock h3 {
  color: #121a2a;
  font-size: 1rem;
  margin-bottom: 0.55rem;
}

body.page-sow .sow-subblock ul {
  margin: 0;
  padding-left: 1.1rem;
}

body.page-sow .sow-task-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem 2rem;
}

body.page-sow .sow-task {
  padding-top: 14px;
  border-top: 1px solid rgba(18, 26, 42, 0.1);
}

body.page-sow .sow-task h3 {
  margin-bottom: 0.5rem;
  color: #121a2a;
  font-size: 1rem;
}

body.page-sow .sow-table-wrap {
  margin-top: 1rem;
  border: 1px solid rgba(18, 26, 42, 0.1);
}

body.page-sow .sow-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

body.page-sow .sow-table th,
body.page-sow .sow-table td {
  padding: 12px 14px;
  vertical-align: top;
  border-bottom: 1px solid rgba(18, 26, 42, 0.1);
  text-align: left;
}

body.page-sow .sow-table thead th {
  background: rgba(11, 19, 32, 0.045);
  color: #8d6f2f;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

body.page-sow .sow-table tbody tr:last-child td {
  border-bottom: 0;
}

body.page-sow .sow-table td strong {
  color: #121a2a;
}

body.page-sow .sow-signoff {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem 2rem;
  margin-top: 1.5rem;
}

body.page-sow .sow-signoff-line {
  padding-top: 1rem;
  border-top: 1px solid rgba(18, 26, 42, 0.18);
}

body.page-sow .sow-signoff-line span {
  display: block;
  color: rgba(23, 32, 45, 0.62);
  font-size: 12px;
  margin-top: 0.4rem;
}

body.page-sow .sow-footnote {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(18, 26, 42, 0.12);
  color: rgba(23, 32, 45, 0.68);
  font-size: 13px;
  line-height: 1.7;
}

body.page-sow .sow-cta-band {
  padding: 0 0 5rem;
  background: #efe9dd;
}

body.page-sow .sow-cta-shell {
  border-top: 1px solid rgba(18, 26, 42, 0.12);
  padding-top: 2rem;
}

body.page-sow .sow-cta-copy {
  color: rgba(18, 26, 42, 0.78);
  line-height: 1.8;
  max-width: 60ch;
}

@media (max-width: 991.98px) {
  body.page-sow .sow-doc-header,
  body.page-sow .sow-note-band,
  body.page-sow .sow-grid-2,
  body.page-sow .sow-task-grid,
  body.page-sow .sow-signoff {
    grid-template-columns: 1fr;
  }
  body.page-sow .sow-hero-note {
    border-left: 0;
    border-top: 1px solid var(--gold);
    padding-left: 0;
    padding-top: 1rem;
  }
}
@media (max-width: 767.98px) {
  body.page-sow.sow-page {
    background: linear-gradient(180deg, #0b1320 0%, #0b1320 325px, #efe9dd 325px, #efe9dd 100%);
  }
  body.page-sow .sow-paper-wrap {
    margin-top: -1rem;
  }
  body.page-sow .sow-toc {
    grid-template-columns: 1fr;
  }
  body.page-sow .sow-section-head {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }
  body.page-sow .sow-hero {
    padding-top: 4.5rem;
  }
  body.page-sow .sow-table th,
  body.page-sow .sow-table td {
    min-width: 160px;
  }
}
@page {
  size: letter;
  margin: 0.55in;
}
@media print {
  html:has(body.page-sow),
  body.page-sow,
  body.page-sow.sow-page {
    background: #fff !important;
    color: #111 !important;
    overflow: visible !important;
  }
  body.page-sow header,
  body.page-sow footer,
  body.page-sow .sow-hero,
  body.page-sow .sow-cta-band,
  body.page-sow .modal,
  body.page-sow .btn,
  body.page-sow .navbar,
  body.page-sow .briefing-confirmation,
  body.page-sow .briefing-error {
    display: none !important;
  }
  body.page-sow main,
  body.page-sow .sow-stage,
  body.page-sow .sow-paper-wrap {
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
  }
  body.page-sow .container,
  body.page-sow .container.px-0 {
    width: 100% !important;
    max-width: none !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  body.page-sow .sow-paper {
    border: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
    background: #fff !important;
  }
  body.page-sow .sow-paper::before,
  body.page-sow .sow-paper::after {
    display: none !important;
  }
  body.page-sow .sow-doc-header,
  body.page-sow .sow-note-band,
  body.page-sow .sow-grid-2,
  body.page-sow .sow-task-grid,
  body.page-sow .sow-signoff {
    gap: 18px 24px !important;
  }
  body.page-sow .sow-section,
  body.page-sow .sow-subblock,
  body.page-sow .sow-task,
  body.page-sow .sow-table-wrap,
  body.page-sow .sow-signoff-line {
    break-inside: avoid;
    page-break-inside: avoid;
  }
  body.page-sow .sow-section {
    padding-top: 1.35rem;
    margin-top: 1.35rem;
  }
  body.page-sow .sow-doc-title {
    font-size: 2rem !important;
  }
  body.page-sow .sow-section h2 {
    font-size: 1.08rem !important;
  }
  body.page-sow .sow-table {
    font-size: 12px !important;
  }
  body.page-sow .sow-table th,
  body.page-sow .sow-table td {
    padding: 8px 10px !important;
  }
  body.page-sow a,
  body.page-sow a:visited {
    color: inherit !important;
    text-decoration: none !important;
  }
}
.btn-gold,
.btn.btn-gold,
.btn-outline-gold,
.btn.btn-outline-gold,
.btn-gold:hover,
.btn-gold:focus,
.btn-gold:focus-visible,
.btn-gold:active,
.btn.btn-gold:hover,
.btn.btn-gold:focus,
.btn.btn-gold:focus-visible,
.btn.btn-gold:active,
.btn-outline-gold:hover,
.btn-outline-gold:focus,
.btn-outline-gold:focus-visible,
.btn-outline-gold:active,
.btn.btn-outline-gold:hover,
.btn.btn-outline-gold:focus,
.btn.btn-outline-gold:focus-visible,
.btn.btn-outline-gold:active,
.service-overview .overview-cta-desktop .btn,
.overview-cta-mobile .btn,
.service-overview .overview-cta-desktop .btn:hover,
.service-overview .overview-cta-desktop .btn:focus,
.service-overview .overview-cta-desktop .btn:focus-visible,
.service-overview .overview-cta-desktop .btn:active,
.overview-cta-mobile .btn:hover,
.overview-cta-mobile .btn:focus,
.overview-cta-mobile .btn:focus-visible,
.overview-cta-mobile .btn:active {
  box-shadow: none !important;
}

.navbar .nav-cta.btn-outline-gold:hover,
.navbar .nav-cta.btn-outline-gold:focus,
.navbar .nav-cta.btn-outline-gold:focus-visible,
.navbar .nav-cta.btn-outline-gold:active {
  background-color: var(--gold) !important;
  background-image: linear-gradient(180deg, var(--gold) 0%, var(--gold-2) 100%) !important;
  border-color: var(--gold) !important;
  color: #111 !important;
  box-shadow: none !important;
}

.btn-outline-gold:hover,
.btn-outline-gold:focus,
.btn-outline-gold:focus-visible,
.btn-outline-gold:active,
.btn.btn-outline-gold:hover,
.btn.btn-outline-gold:focus,
.btn.btn-outline-gold:focus-visible,
.btn.btn-outline-gold:active {
  background-color: var(--gold) !important;
  background-image: linear-gradient(180deg, var(--gold) 0%, var(--gold-2) 100%) !important;
  border-color: var(--gold) !important;
  color: #111 !important;
  box-shadow: none !important;
}

.hero-cta:has(.btn-outline-gold:hover) .btn-gold,
.hero-cta:has(.btn-outline-gold:focus-visible) .btn-gold,
.overview-cta-desktop:has(.btn-outline-gold:hover) .btn-gold,
.overview-cta-desktop:has(.btn-outline-gold:focus-visible) .btn-gold,
.overview-cta-mobile:has(.btn-outline-gold:hover) .btn-gold,
.overview-cta-mobile:has(.btn-outline-gold:focus-visible) .btn-gold,
.sow-chip-row:has(.btn-outline-gold:hover) .btn-gold,
.sow-chip-row:has(.btn-outline-gold:focus-visible) .btn-gold {
  background-color: transparent !important;
  background-image: none !important;
  border-color: var(--gold) !important;
  color: var(--gold) !important;
  box-shadow: none !important;
}

.hero-cta:has(.btn-outline-gold) .btn-gold:hover,
.hero-cta:has(.btn-outline-gold) .btn-gold:focus,
.hero-cta:has(.btn-outline-gold) .btn-gold:focus-visible,
.hero-cta:has(.btn-outline-gold) .btn-gold:active,
.overview-cta-desktop:has(.btn-outline-gold) .btn-gold:hover,
.overview-cta-desktop:has(.btn-outline-gold) .btn-gold:focus,
.overview-cta-desktop:has(.btn-outline-gold) .btn-gold:focus-visible,
.overview-cta-desktop:has(.btn-outline-gold) .btn-gold:active,
.overview-cta-mobile:has(.btn-outline-gold) .btn-gold:hover,
.overview-cta-mobile:has(.btn-outline-gold) .btn-gold:focus,
.overview-cta-mobile:has(.btn-outline-gold) .btn-gold:focus-visible,
.overview-cta-mobile:has(.btn-outline-gold) .btn-gold:active,
.sow-chip-row:has(.btn-outline-gold) .btn-gold:hover,
.sow-chip-row:has(.btn-outline-gold) .btn-gold:focus,
.sow-chip-row:has(.btn-outline-gold) .btn-gold:focus-visible,
.sow-chip-row:has(.btn-outline-gold) .btn-gold:active {
  background-color: var(--gold) !important;
  background-image: linear-gradient(180deg, var(--gold) 0%, var(--gold-2) 100%) !important;
  border-color: var(--gold) !important;
  color: #111 !important;
  box-shadow: none !important;
}

.navbar .nav-cta {
  font-weight: 400 !important;
}

.briefing-form .briefing-cta {
  padding-top: 0.65rem !important;
  padding-bottom: 0.65rem !important;
}

body.page-leadership-team .profile-role {
  color: var(--gold) !important;
}

.hero-slide--slider-1 .hero-headline {
  min-height: auto !important;
  margin-bottom: 0.75rem !important;
}

@media (min-width: 768px) {
  body.page-disaster-crisis-response .service-detail-split,
  body.page-executive-protection .service-detail-split,
  body.page-guard-protective-services .service-detail-split,
  body.page-physical-penetration-testing .service-detail-split,
  body.page-security-assessments-consulting .service-detail-split {
    grid-template-columns: minmax(0, 1fr) 1px minmax(0, 1fr);
    column-gap: 24px;
  }
  body.page-disaster-crisis-response .service-detail-section:first-child,
  body.page-executive-protection .service-detail-section:first-child,
  body.page-guard-protective-services .service-detail-section:first-child,
  body.page-physical-penetration-testing .service-detail-section:first-child,
  body.page-security-assessments-consulting .service-detail-section:first-child {
    grid-column: 1;
  }
  body.page-disaster-crisis-response .service-detail-section + .service-detail-section,
  body.page-executive-protection .service-detail-section + .service-detail-section,
  body.page-guard-protective-services .service-detail-section + .service-detail-section,
  body.page-physical-penetration-testing .service-detail-section + .service-detail-section,
  body.page-security-assessments-consulting .service-detail-section + .service-detail-section {
    grid-column: 3;
    border-left: 0;
    padding-left: 0;
  }
  body.page-disaster-crisis-response .service-detail-split::before,
  body.page-executive-protection .service-detail-split::before,
  body.page-guard-protective-services .service-detail-split::before,
  body.page-physical-penetration-testing .service-detail-split::before,
  body.page-security-assessments-consulting .service-detail-split::before {
    content: "";
    grid-column: 2;
    grid-row: 1;
    align-self: stretch;
    width: 1px;
    background: rgba(18, 26, 42, 0.12);
  }
}
