@font-face {
  font-family: "Bebas Neue";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/bebasneue-jtusjig69ck48gw7pxoo9wlhyw.woff2") format("woff2");
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/poppins-pxieyp8kv8jhgfvrjjfecg.woff2") format("woff2");
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/assets/fonts/poppins-pxibyp8kv8jhgfvrlej6z1xlfq.woff2") format("woff2");
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/assets/fonts/poppins-pxibyp8kv8jhgfvrlcz7z1xlfq.woff2") format("woff2");
}

:root {
  --black: #000;
  --ink: #171717;
  --charcoal: #2a2a2a;
  --ash: #444;
  --white: #fff;
  --paper: #f7f7f7;
  --sand: #a99b90;
  --sand-light: #eed2bd;
  --red: #f00;
  --line: rgba(255, 255, 255, 0.22);
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(0, 0, 0, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.home .site-header {
  position: absolute;
  width: 100%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.82));
  border-bottom-color: transparent;
}

.header-inner {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 82px;
  height: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
}

.nav-link,
.nav-group > a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--white);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 18px;
  letter-spacing: 0;
  text-transform: uppercase;
  opacity: 0.92;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-group > a:hover,
.nav-group > a:focus-visible,
.nav-link[aria-current="page"] {
  color: var(--sand-light);
  outline: none;
}

.nav-group {
  position: relative;
}

.nav-group > a::after {
  content: "";
  width: 0;
  height: 0;
  margin-left: 8px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
}

.submenu {
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  min-width: 250px;
  padding: 12px;
  background: rgba(0, 0, 0, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.14);
  transform: translateX(-50%) translateY(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.nav-group:hover .submenu,
.nav-group:focus-within .submenu {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  visibility: visible;
}

.submenu a {
  display: block;
  padding: 10px 12px;
  color: var(--white);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 18px;
  text-transform: uppercase;
}

.submenu a:hover,
.submenu a:focus-visible {
  background: var(--sand);
  color: var(--black);
  outline: none;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--white);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}

.menu-toggle span {
  position: relative;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-toggle span::before {
  top: -7px;
}

.menu-toggle span::after {
  top: 7px;
}

.menu-open .menu-toggle span {
  transform: rotate(45deg);
}

.menu-open .menu-toggle span::before {
  transform: translateY(7px) rotate(90deg);
}

.menu-open .menu-toggle span::after {
  opacity: 0;
}

.hero {
  position: relative;
  min-height: 760px;
  padding: 158px 0 0;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.45) 48%, rgba(0, 0, 0, 0.82) 100%),
    url("/assets/img/flagbanner.jpg") top center / cover no-repeat;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: end;
  gap: 28px;
}

.hero-copy {
  align-self: center;
  padding: 80px 0 84px;
}

.eyebrow {
  margin: 0 0 4px;
  color: var(--sand-light);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

h1,
h2,
h3,
.display {
  margin: 0;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.95;
  text-transform: uppercase;
}

h1 {
  max-width: 660px;
  font-size: clamp(54px, 7vw, 102px);
}

.hero-subtitle {
  margin: 18px 0 18px;
  font-size: clamp(25px, 3.2vw, 48px);
  font-weight: 700;
  font-style: italic;
  line-height: 1.1;
  text-transform: uppercase;
}

.hero p {
  max-width: 710px;
  margin: 0 0 30px;
  color: #f1eeee;
  font-weight: 600;
}

.hero-figure {
  align-self: end;
  margin-bottom: -2px;
}

.hero-figure img {
  width: min(100%, 660px);
  margin-left: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 16px 30px;
  border: 1px solid currentColor;
  background: var(--black);
  color: var(--white);
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

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

.btn-red {
  border-color: var(--black);
  background: var(--black);
}

.action-row {
  margin-top: 42px;
}

.action-row-lg {
  margin-top: 46px;
}

.section {
  padding: 86px 0;
}

.section-black {
  background: var(--black);
  color: var(--white);
}

.section-white {
  background: var(--white);
  color: var(--black);
}

.section-paper {
  background: var(--paper);
  color: var(--black);
}

.section-title {
  margin-bottom: 16px;
  font-size: clamp(44px, 5vw, 76px);
}

.section-kicker {
  margin: 0 0 6px;
  color: inherit;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.center {
  text-align: center;
}

.narrow {
  width: min(780px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.stats-wrap {
  background: var(--sand);
  color: var(--black);
}

.stats-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(5, 1fr);
  align-items: stretch;
}

.stats-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 136px;
  padding: 34px 38px;
  background: var(--charcoal);
  color: var(--white);
}

.stats-intro span {
  color: var(--sand);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.stats-intro strong {
  margin-top: 4px;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 400;
  line-height: 0.95;
  text-transform: uppercase;
}

.stat {
  min-height: 136px;
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.stat strong {
  color: var(--black);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(46px, 4.8vw, 76px);
  line-height: 0.9;
}

.stat span {
  margin-top: 10px;
  color: #3a3a3a;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 18px;
  line-height: 1;
  text-transform: uppercase;
}

.service-overview {
  padding-bottom: 150px;
  background:
    url("/assets/img/BG-WHITE-MASK-2.jpg") bottom center / contain no-repeat,
    var(--black);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 42px 54px;
  margin-top: 54px;
}

.services-grid .service-card:nth-child(4) {
  grid-column: 1 / span 1;
  margin-left: 38%;
}

.services-grid .service-card:nth-child(5) {
  grid-column: 2 / span 1;
  margin-left: 38%;
}

.service-card {
  text-align: center;
}

.service-card img {
  width: 96px;
  height: 96px;
  margin: 0 auto 18px;
  object-fit: contain;
}

.service-card h3,
.process-card h3,
.faq-title {
  font-size: 30px;
}

.service-card p {
  margin: 10px 0 0;
  font-size: 15px;
}

.split-feature {
  position: relative;
  overflow: hidden;
}

.split-feature::after,
.faq-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/assets/img/strategic-new-logo-bw.jpg") right center / 620px auto no-repeat;
  opacity: 0.035;
  pointer-events: none;
}

.feature-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.15fr);
  gap: 72px;
  align-items: center;
}

.feature-image {
  min-height: 680px;
  background: url("/assets/img/prtct-e.jpg") center / cover no-repeat;
}

.feature-copy p {
  margin: 0 0 18px;
}

.process-section {
  padding-top: 150px;
  background:
    url("/assets/img/BG-WHITE-MASK-black-2.jpg") top center / contain no-repeat,
    var(--black);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 46px;
}

.process-card {
  min-height: 218px;
  padding: 34px 24px;
  background: var(--sand);
  color: var(--black);
  text-align: center;
  transition: background 160ms ease;
}

.process-card:hover {
  background: var(--sand-light);
}

.process-number {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  border: 5px solid var(--black);
  border-radius: 50%;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
}

.faq-section {
  position: relative;
  overflow: hidden;
  background: var(--white);
  color: var(--black);
}

.faq-box {
  position: relative;
  z-index: 1;
  padding: 42px;
  background: var(--sand);
}

.faq-list {
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.faq-item:last-child {
  border-bottom: 0;
}

.faq-item summary {
  position: relative;
  display: block;
  padding: 18px 54px 18px 18px;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 24px;
  line-height: 1.1;
  text-transform: uppercase;
  cursor: pointer;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 22px;
  font-weight: 700;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin: 0;
  padding: 0 18px 20px;
}

.final-cta {
  padding: 72px 0;
  background: var(--black);
}

.cta-panel {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.cta-copy {
  padding: 42px;
}

.cta-copy h2 {
  font-size: clamp(34px, 4vw, 50px);
}

.cta-copy p {
  margin: 12px 0 0;
}

.cta-action {
  display: grid;
  place-items: center;
  padding: 38px;
  background: var(--red);
}

.site-footer {
  background: var(--ash);
  color: var(--white);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.2fr;
  gap: 54px;
  padding: 62px 0 56px;
}

.footer-logo {
  width: 124px;
}

.footer-title {
  margin: 0 0 16px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.footer-title.spaced {
  margin-top: 20px;
}

.footer-list {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 13px;
  text-transform: uppercase;
}

.footer-list a:hover,
.footer-list a:focus-visible {
  color: var(--sand-light);
  outline: none;
}

.affiliates {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 18px;
}

.affiliates img:first-child {
  width: 150px;
}

.affiliates img:last-child {
  width: 62px;
}

.footer-bottom {
  padding: 12px 0;
  background: var(--black);
  font-size: 12px;
  text-align: center;
}

.footer-bottom a {
  color: inherit;
}

.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: var(--sand-light);
  outline: none;
}

.footer-bottom a + a::before {
  content: "|";
  margin: 0 8px;
  color: rgba(255, 255, 255, 0.5);
}

.page-hero {
  padding: 66px 0 62px;
  background: var(--black);
}

.page-hero h1 {
  max-width: none;
  font-size: clamp(48px, 6vw, 82px);
}

.legal-section {
  background: var(--white);
  color: var(--black);
}

.legal-content {
  display: grid;
  gap: 28px;
  max-width: 920px;
}

.legal-meta {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.legal-content h2 {
  margin: 0 0 10px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 0.95;
  text-transform: uppercase;
}

.legal-content h3 {
  margin: 0 0 8px;
  font-size: 22px;
  line-height: 1;
  text-transform: uppercase;
}

.legal-content p,
.legal-content li {
  color: #242424;
}

.legal-content p {
  margin: 0;
}

.legal-content ul {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding-left: 20px;
}

.legal-card {
  border: 1px solid rgba(0, 0, 0, 0.14);
  padding: 26px;
  background: #f7f7f7;
}

.license-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 16px 0 0;
}

.license-list div {
  padding: 18px;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.12);
}

.license-list dt {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.license-list dd {
  margin: 0;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1;
}

.certification-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
  margin-top: 18px;
}

.certification-row img:first-child {
  width: 190px;
}

.certification-row img:last-child {
  width: 78px;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: 58px;
  align-items: center;
}

.content-grid.reverse {
  grid-template-columns: minmax(300px, 0.95fr) minmax(0, 1.05fr);
}

.content-grid.reverse .copy {
  order: -1;
}

.copy p {
  margin: 0 0 18px;
}

.framed-img {
  border: 4px solid var(--sand);
}

.founders-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
  margin-top: 42px;
}

.founder-card {
  background: var(--paper);
  color: var(--black);
}

.founder-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-bottom: 4px solid var(--sand);
}

.founder-card div {
  padding: 28px;
}

.founder-card h3 {
  font-size: 38px;
}

.service-row {
  padding: 76px 0;
  background: var(--white);
  color: var(--black);
}

.service-row:nth-child(odd) {
  background: var(--paper);
}

.service-row h2 {
  margin-bottom: 18px;
  font-size: clamp(42px, 5vw, 66px);
}

.service-row p {
  margin: 0 0 16px;
}

.contact-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
  gap: 54px;
  align-items: start;
}

.direct-contact-shell {
  align-items: center;
}

.direct-contact-copy {
  max-width: 680px;
  margin: 0;
  color: var(--black);
  font-size: 19px;
}

.contact-panel {
  padding: 34px;
  background: var(--black);
  color: var(--white);
}

.contact-panel h2 {
  font-size: 46px;
}

.contact-panel p {
  margin: 12px 0 24px;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-methods {
  gap: 18px;
}

.contact-methods li {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.contact-methods span {
  display: block;
  margin-bottom: 6px;
  color: var(--sand-light);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 24px;
  line-height: 1;
  text-transform: uppercase;
}

.contact-methods a,
.contact-methods strong {
  color: var(--white);
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.contact-action {
  margin-top: 28px;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 22px;
}

.modal[hidden] {
  display: none;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
}

.modal-panel {
  position: relative;
  z-index: 1;
  width: min(960px, 100%);
  height: min(760px, calc(100vh - 44px));
  background: var(--white);
  color: var(--black);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 0;
  background: var(--black);
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
}

.modal iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 1024px) {
  .hero-grid,
  .feature-grid,
  .content-grid,
  .content-grid.reverse,
  .contact-shell {
    grid-template-columns: 1fr;
  }

  .content-grid.reverse .copy {
    order: 0;
  }

  .hero-copy {
    padding-bottom: 20px;
  }

  .hero-figure img {
    width: min(78vw, 560px);
    margin: 0 auto;
  }

  .stats-grid {
    grid-template-columns: repeat(5, 1fr);
  }

  .stats-intro {
    grid-column: 1 / -1;
    min-height: auto;
    text-align: center;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid .service-card:nth-child(4),
  .services-grid .service-card:nth-child(5) {
    grid-column: auto;
    margin-left: 0;
  }

  .feature-image {
    min-height: 520px;
  }

  .footer-main,
  .cta-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {
  .header-inner {
    min-height: 80px;
  }

  .brand img {
    width: 68px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-menu {
    position: fixed;
    inset: 80px 0 0;
    z-index: 40;
    display: none;
    align-items: stretch;
    justify-content: start;
    flex-direction: column;
    gap: 0;
    padding: 28px 24px 42px;
    background: rgba(0, 0, 0, 0.98);
    overflow-y: auto;
  }

  .menu-open .nav-menu {
    display: flex;
  }

  .nav-link,
  .nav-group > a {
    min-height: 48px;
    font-size: 25px;
  }

  .nav-group > a::after {
    display: none;
  }

  .submenu {
    position: static;
    min-width: 0;
    padding: 0 0 8px 14px;
    border: 0;
    transform: none;
    opacity: 1;
    visibility: visible;
    background: transparent;
  }

  .submenu a {
    padding: 8px 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 20px;
  }

  .hero {
    min-height: 0;
    padding-top: 112px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero p {
    margin-left: auto;
    margin-right: auto;
  }

  .stats-grid,
  .services-grid,
  .process-grid,
  .founders-grid {
    grid-template-columns: 1fr;
  }

  .stat {
    min-height: 112px;
    border-top: 1px solid rgba(0, 0, 0, 0.12);
  }

  .section,
  .service-row {
    padding: 62px 0;
  }

  .service-overview {
    padding-bottom: 118px;
  }

  .process-section {
    padding-top: 112px;
  }

  .faq-box {
    padding: 28px 16px;
  }

  .faq-item summary {
    font-size: 21px;
  }

  .cta-copy,
  .cta-action {
    padding: 28px;
  }

  .footer-main {
    gap: 34px;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(var(--container), calc(100% - 28px));
  }

  h1 {
    font-size: 50px;
  }

  .hero-subtitle {
    font-size: 25px;
  }

  .section-title,
  .page-hero h1,
  .service-row h2 {
    font-size: 42px;
  }

  .hero-figure img {
    width: 100%;
  }

  .feature-image {
    min-height: 430px;
  }

  .affiliates {
    flex-wrap: wrap;
  }

  .license-list {
    grid-template-columns: 1fr;
  }

  .footer-bottom a {
    display: block;
  }

  .footer-bottom a + a::before {
    content: "";
    margin: 0;
  }
}
