:root {
  --site-navy: rgba(11, 31, 51, 0.55);
  --site-border: rgba(255, 255, 255, 0.08);
  --site-orange: #ff7a00;
  --site-footer: #081727;
  --site-text: #ffffff;
  --site-body: #ffffff;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background: var(--site-body);
  font-family: 'Titillium Web', sans-serif;
}

body {
  color: #1d2430;
}

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

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
  z-index: 100000;
  background: #fff;
  color: #000;
  padding: 10px 14px;
}

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

.shell-container {
  width: min(100%, 1280px);
  margin: 0 auto;
  padding: 0 20px;
}

.site-header-shell .shell-container {
  width: 100%;
  max-width: none;
}

.site-header-shell {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 9999;
  isolation: isolate;
  overflow: visible;
}

.header-primary-bar,
.header-secondary-bar {
  background: var(--site-navy);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--site-border);
}

.header-primary-bar,
.header-secondary-bar,
.header-primary-inner,
.header-secondary-inner,
.desktop-nav,
.nav-row,
.nav-row > li,
.has-dropdown {
  overflow: visible;
}

.header-primary-bar,
.header-primary-inner,
.desktop-nav-primary {
  position: relative;
  z-index: 40;
}

.header-secondary-bar,
.header-secondary-inner,
.desktop-nav-secondary {
  position: relative;
  z-index: 20;
}

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

.header-secondary-inner {
  min-height: 30px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.brand-lockup {
  flex: 0 0 auto;
}

.brand-logo {
  width: 230px;
  max-width: 230px;
  height: auto;
}

.desktop-nav {
  display: flex;
}

.nav-row {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-row > li {
  position: relative;
}

.nav-row > li > a,
.nav-toggle {
  color: #fff;
  font-size: 16px;
  line-height: 30px;
  padding: 0 16px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
}

.nav-row-secondary > li > a {
  font-size: 16px;
}

.nav-row > li > a:hover,
.nav-toggle:hover,
.nav-row > li.is-open > .nav-toggle,
.nav-row > li:hover > a {
  color: var(--site-orange);
}

.dropdown-panel {
  position: absolute;
  top: calc(100% + 1px);
  left: 0;
  min-width: 240px;
  list-style: none;
  margin: 0;
  padding: 0;
  background: rgba(0, 0, 0, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  z-index: 120;
}

.has-dropdown.is-open > .dropdown-panel,
.has-dropdown:hover > .dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-panel li {
  position: relative;
}

.dropdown-panel a,
.dropdown-panel .nav-toggle {
  width: 100%;
  text-align: left;
  color: #fff;
  display: block;
  padding: 14px 16px;
  background: transparent;
}

.dropdown-panel li + li > a,
.dropdown-panel li + li > .nav-toggle {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.dropdown-panel a:hover,
.dropdown-panel .nav-toggle:hover {
  color: var(--site-orange);
  background: rgba(255, 255, 255, 0.04);
}

.dropdown-panel-nested {
  top: 0;
  left: 100%;
  z-index: 130;
}

.nested-toggle::after,
.nav-toggle::after {
  content: " +";
  font-size: 0.85em;
}

.nav-row > li:not(.has-dropdown) > .nav-toggle::after,
.dropdown-panel li:not(.has-dropdown) > .nav-toggle::after {
  content: "";
}

.mobile-menu-button,
.mobile-menu-panel {
  display: none;
}

.mobile-menu-panel[hidden] {
  display: none !important;
}

.mobile-menu-button {
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 4px;
  background: rgba(255, 122, 0, 0.95);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.mobile-menu-button span {
  width: 20px;
  height: 2px;
  background: #fff;
}

main {
  display: block;
}

.site-footer-shell {
  background: var(--site-footer);
  color: #fff;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 56px;
  padding-top: 68px;
  padding-bottom: 44px;
}

.footer-logo {
  width: 354px;
  max-width: 100%;
  margin-bottom: 24px;
}

.footer-column h3 {
  margin: 0 0 20px;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}

.footer-column p,
.footer-column li,
.footer-column a {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.92);
}

.footer-column a:hover {
  color: var(--site-orange);
}

.footer-links ul,
.footer-contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  padding: 18px 0;
  color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 1100px) {
  .brand-logo {
    width: 200px;
    max-width: 200px;
  }

  .nav-row > li > a,
  .nav-toggle {
    padding-left: 12px;
    padding-right: 12px;
    font-size: 14px;
    line-height: 28px;
  }

  .nav-row-secondary > li > a {
    font-size: 14px;
  }
}

@media (max-width: 991.98px) {
  body.mobile-menu-open {
    overflow: hidden;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-menu-button {
    display: inline-flex;
  }

  .header-primary-inner {
    min-height: 80px;
  }

  .header-secondary-bar {
    display: none;
  }

  .mobile-menu-panel {
    display: none;
    background: rgba(9, 26, 43, 0.98);
    border-top: 1px solid var(--site-border);
    max-height: calc(100vh - 80px);
    overflow: auto;
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.34);
  }

  body.mobile-menu-open .mobile-menu-panel:not([hidden]),
  .mobile-menu-panel.is-open:not([hidden]) {
    display: block;
  }

  .mobile-nav-list,
  .mobile-submenu {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .mobile-nav-list > li > a,
  .mobile-submenu-toggle {
    display: block;
    width: 100%;
    padding: 15px 24px;
    background: transparent;
    border: 0;
    text-align: left;
    color: #fff;
    font-family: inherit;
    font-size: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .mobile-nav-list > li > a:hover,
  .mobile-nav-list > li > a:focus-visible,
  .mobile-submenu a:hover,
  .mobile-submenu a:focus-visible,
  .mobile-submenu-toggle:hover,
  .mobile-submenu-toggle:focus-visible,
  .mobile-has-children.is-open > .mobile-submenu-toggle {
    color: #fff;
    background: rgba(255, 122, 0, 0.18);
    outline: none;
  }

  .mobile-nav-list > li > a:focus-visible,
  .mobile-submenu a:focus-visible,
  .mobile-submenu-toggle:focus-visible {
    outline: 2px solid #38bdf8;
    outline-offset: -2px;
  }

  .mobile-submenu-toggle::after {
    content: "+";
    float: right;
    color: #ffb15c;
    font-weight: 700;
  }

  .mobile-has-children.is-open > .mobile-submenu-toggle::after {
    content: "-";
  }

  .mobile-submenu {
    display: none;
    background: rgba(3, 14, 28, 0.96);
    border-left: 3px solid rgba(255, 122, 0, 0.78);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  }

  .mobile-has-children.is-open > .mobile-submenu {
    display: block;
  }

  .mobile-submenu a,
  .mobile-submenu .mobile-submenu-toggle {
    display: block;
    width: 100%;
    padding-left: 38px;
    color: rgba(255, 255, 255, 0.94);
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

  .mobile-submenu .mobile-submenu .mobile-submenu-toggle,
  .mobile-submenu .mobile-submenu a {
    padding-left: 52px;
    background: rgba(255, 255, 255, 0.055);
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 56px;
    padding-bottom: 40px;
  }
}

@media (max-width: 575.98px) {
  .shell-container {
    padding: 0 16px;
  }

  .brand-logo {
    width: 150px;
    max-width: 150px;
  }

  .header-primary-inner {
    min-height: 72px;
  }
}

.suparco-btn-disabled {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
}

.suparco-mt-20 {
  margin-top: 20px;
}
