.topbar {
  background: linear-gradient(180deg, #FFE84D 0%, #FFDE00 50%, #ECC900 100%);
  padding: 0;
  border-bottom: 1px solid rgba(3,70,148,0.2);
  box-shadow: inset 0 1px 0 rgba(240,230,210,0.6), 0 2px 6px rgba(26,42,58,0.1);
}

.topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  height: 36px;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 0;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 0;
}

.topbar-link {
  font-family: var(--font-body);
  font-size: 11px;
  color: rgba(3,70,148,0.85);
  font-weight: 600;
  text-transform: none;
  padding: 0 11px;
  letter-spacing: 0.04em;
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 5px;
  height: 100%;
  border-right: 1px solid rgba(3,70,148,0.15);
}

.topbar-right .topbar-link:first-child {
  border-left: 1px solid rgba(3,70,148,0.15);
}

.topbar-link:hover {
  color: var(--blue);
  background: rgba(3,70,148,0.05);
}

.topbar-social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 100%;
  color: rgba(3,70,148,0.7);
  transition: color 0.15s, background 0.15s;
  border-right: 1px solid rgba(3,70,148,0.1);
}

.topbar-social:first-child {
  border-left: 1px solid rgba(3,70,148,0.1);
}

.topbar-social:hover {
  color: var(--blue);
  background: rgba(3,70,148,0.1);
}

.topbar-div {
  width: 1px;
  height: 14px;
  background: rgba(3,70,148,0.2);
  margin: 0 6px;
  display: inline-block;
  flex-shrink: 0;
}


.topbar-gtranslate {
  display: flex;
  align-items: center;
  height: 100%;
}

.topbar-gtranslate .gtranslate_wrapper {
  display: flex !important;
  align-items: center !important;
  gap: 2px !important;
  padding: 0 10px !important;
  height: 36px !important;
  border-left: 1px solid rgba(3,70,148,0.15) !important;
}


.topbar-gtranslate .glink {
  display: inline-flex !important;
  align-items: center !important;
  gap: 5px !important;
  padding: 3px 7px !important;
  color: rgba(3,70,148,0.75) !important;
  text-decoration: none !important;
  transition: background 0.15s !important;
  white-space: nowrap;
}

.topbar-gtranslate .glink:hover {
  background: rgba(3,70,148,0.1) !important;
}


.topbar-gtranslate .glink.gt-current-lang {
  background: rgba(3,70,148,0.08) !important;
  color: var(--blue) !important;
}


.topbar-gtranslate .glink img {
  display: block !important;
  width: 16px !important;
  height: 16px !important;
  object-fit: cover !important;
  flex-shrink: 0 !important;
  border-radius: 2px !important;
}


.topbar-gtranslate .glink::after {
  content: attr(data-gt-lang);
  font-family: var(--font-body) !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: inherit;
}


#google_translate_element2 {
  display: none !important;
}



.nav-search-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(1,20,60,0.96);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 120px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.nav-search-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.nav-search-overlay-inner {
  width: 100%;
  max-width: 680px;
  padding: 0 24px;
  position: relative;
}

.nav-search-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(240,230,210,0.35);
  margin-bottom: 16px;
  text-align: center;
}

.nav-search-form {
  position: relative;
}

.nav-search-field {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(240,230,210,0.07);
  border: 1.5px solid rgba(240,230,210,0.2);
  border-radius: var(--r-pill);
  padding: 6px 6px 6px 20px;
  transition: border-color 0.2s, background 0.2s;
}

.nav-search-field:focus-within {
  border-color: var(--yellow);
  background: rgba(240,230,210,0.1);
}

.nav-search-field > svg {
  color: rgba(240,230,210,0.4);
  flex-shrink: 0;
}

.nav-search-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-size: 20px;
  color: var(--ivory);
  font-family: var(--font-body);
  padding: 10px 0;
  min-width: 0;
}

.nav-search-input::placeholder {
  color: rgba(240,230,210,0.3);
}

.nav-search-submit {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--yellow);
  color: var(--blue);
  border: none;
  border-radius: var(--r-pill);
  padding: 12px 20px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font-body);
  letter-spacing: 0.04em;
  flex-shrink: 0;
  transition: background 0.15s, transform 0.15s;
  white-space: nowrap;
}

.nav-search-submit:hover {
  background: #ffe633;
  transform: scale(1.05);
}


.nav-search-suggestions {
  list-style: none;
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  right: 0;
  background: var(--cream);
  border: 1px solid rgba(3,70,148,0.12);
  border-radius: var(--r-lg);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  z-index: 10;
  max-height: 280px;
  overflow-y: auto;
  overflow-x: hidden;
  display: none;
}

.nav-search-suggestions.has-results {
  display: block;
}

.nav-search-suggestions li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid rgba(3,70,148,0.06);
  transition: background 0.12s, color 0.12s;
}

.nav-search-suggestions li:last-child a {
  border-bottom: none;
}

.nav-search-suggestions li a:hover,
.nav-search-suggestions li.active a {
  background: var(--cream);
  color: var(--blue);
}

.nav-search-suggestions .sug-type {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(3,70,148,0.4);
  margin-left: auto;
  flex-shrink: 0;
}


.nav-search-close {
  position: absolute;
  top: -60px;
  right: 24px;
  background: rgba(240,230,210,0.08);
  border: 1px solid rgba(240,230,210,0.15);
  color: rgba(240,230,210,0.6);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.nav-search-close:hover {
  background: rgba(240,230,210,0.15);
  color: var(--ivory);
}


*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px; 
  font-size: 17px;
  
}


body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  overflow-x: clip;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body > main { flex: 1 0 auto; }
#site-header, .site-footer { flex-shrink: 0; }


.admin-bar #site-header { top: 32px; }
@media (max-width: 782px) {
  .admin-bar #site-header { top: 46px; }
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  font-family: var(--font-body);
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}


.screen-reader-text {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

.skip-link:focus {
  position: fixed;
  top: 0;
  left: 0;
  background: var(--yellow);
  color: var(--blue);
  padding: 12px 20px;
  font-weight: 700;
  font-size: 17px;
  z-index: 9999;
  left: auto;
  width: auto;
  height: auto;
  clip: auto;
}


.cursor {
  display: none;
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--yellow);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.2s;
  mix-blend-mode: multiply;
}

.cursor-ring {
  display: none;
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--blue);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              height 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.3s ease,
              opacity 0.3s ease;
  opacity: 0.55;
}

.cursor-ring.is-hover {
  width: 56px;
  height: 56px;
  border-color: var(--yellow);
  opacity: 0.85;
}

@media (hover: hover) {
  .cursor,
  .cursor-ring {
    display: block;
  }
}


.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}


.sec-head {
  text-align: left;
  margin-bottom: 40px;
}


.sec-head--split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
}

.sec-kicker {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent3);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.sec-title {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.1;
}


.sec-title--lg {
  white-space: nowrap;
}

.sec-title.sec-title--lg {
  font-size: clamp(26px, 3.4vw, 42px);
}

@media (max-width: 768px) {
  .sec-title--lg {
    white-space: normal;
  }
  .sec-title.sec-title--lg {
    font-size: 30px;
  }
}

.sec-all {
  font-size: 17px;
  color: var(--blue);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding-bottom: 2px;
  border-bottom: 1.5px solid transparent;
  transition: border-color var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
  margin-left: 24px;
}

.sec-all:hover {
  border-bottom-color: var(--blue);
}


.reveal {
  opacity: 0;
  transform: translateY(48px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-48px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right {
  opacity: 0;
  transform: translateX(48px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translate(0);
}


.line-reveal {
  overflow: hidden;
  display: block;
}

.line-reveal > span {
  display: block;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

.line-reveal.visible > span {
  opacity: 1;
  transform: translateY(0);
}


#site-header {
  position: sticky;
  top: 0;
  z-index: 200;
}


#site-header.hide-topbar {
  transform: none;
}

.site-nav {
  position: relative;
  height: 60px;
  background: #F8F5EF;
  border-bottom: 1.5px solid #E8E0D2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  transition: height 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.35s ease,
              padding 0.35s ease;
}

.site-nav.scrolled {
  height: 50px;
  box-shadow: 0 2px 20px rgba(26,42,58,0.1);
}


#site-header[data-time-ambient="morning"] .site-nav.scrolled {
  box-shadow: 0 2px 4px rgba(3, 70, 148, 0.04), 
              0 8px 24px rgba(3, 70, 148, 0.12);
}

#site-header[data-time-ambient="afternoon"] .site-nav.scrolled {
  box-shadow: 0 2px 6px rgba(184, 73, 31, 0.06), 
              0 12px 32px rgba(184, 73, 31, 0.15);
}

#site-header[data-time-ambient="night"] .site-nav.scrolled {
  box-shadow: 0 4px 12px rgba(13, 27, 42, 0.15), 
              0 16px 48px rgba(13, 27, 42, 0.35);
}

.nav-logo-link {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  transition: opacity 0.25s cubic-bezier(0.2, 0, 0.2, 1);
}

.nav-logo-img:hover {
  opacity: 0.75;
}

.logo-divider {
  width: 1px;
  height: 34px;
  background-color: rgba(3, 70, 148, 0.15);
  display: block;
}

@media (max-width: 768px) {
  .nav-logo-link {
    gap: 10px;
  }
  .nav-logo-img {
    height: 32px;
  }
  .logo-divider {
    height: 24px;
  }
}

.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
}

.nav-menu {
  display: flex;
  gap: 24px;
  align-items: center;
  list-style: none;
}

.nav-menu > li > a {
  font-size: 17px;
  color: var(--blue);
  font-weight: 600;
  letter-spacing: 0.01em;
  display: block;
  padding: 6px 2px;
  position: relative;
  white-space: nowrap;
}


.nav-menu .dashicons,
.mobile-nav-list .dashicons {
  font-size: 16px;
  width: 16px;
  height: 16px;
  line-height: 1;
  vertical-align: -3px;
  margin-right: 6px;
  opacity: 0.85;
}

.nav-sub-head .dashicons { margin-right: 8px; vertical-align: -2px; }

.nav-menu > li > a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--blue);
  transition: width 0.35s cubic-bezier(0.2, 0, 0.2, 1);
}

.nav-menu > li:hover > a,
.nav-menu > li > a:hover {
  color: var(--blue);
  opacity: 1;
}

.nav-menu > li:hover > a::after {
  width: 100%;
}


.nav-menu > li.current-menu-item > a,
.nav-menu > li.current-menu-ancestor > a,
.nav-menu > li.current-menu-parent > a,
.nav-menu > li.current_page_item > a,
.nav-menu > li.current_page_ancestor > a,
.nav-menu > li.current_page_parent > a,
.nav-menu > li > a[aria-current="page"] {
  font-weight: 700;
  opacity: 1;
}

.nav-menu > li.current-menu-item > a::after,
.nav-menu > li.current-menu-ancestor > a::after,
.nav-menu > li.current-menu-parent > a::after,
.nav-menu > li.current_page_item > a::after,
.nav-menu > li.current_page_ancestor > a::after,
.nav-menu > li.current_page_parent > a::after,
.nav-menu > li > a[aria-current="page"]::after {
  width: 100%;
  height: 2px;
}


.nav-menu .sub-menu {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: flex-start;
  background: var(--cream);
  border-radius: var(--r-lg);
  overflow: hidden;
  max-width: calc(100vw - 64px);
  z-index: 300;
  box-shadow: 0 28px 64px rgba(26,42,58,0.2), 0 4px 16px rgba(0,0,0,0.06);
  border-top: 3px solid var(--blue);
  list-style: none;
  padding: 0;
  transform: translateY(8px) scale(0.97);
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              visibility 0.3s;
}

.nav-menu li:hover > .sub-menu,
.nav-menu li.dropdown-open > .sub-menu {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.nav-menu .sub-menu li {
  position: relative;
  background: var(--cream);
  flex: 0 0 230px;
  border-right: 1px solid var(--cream3);
}

.nav-menu .sub-menu li:last-child { border-right: none; }

.nav-menu .sub-menu a {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  height: 100%;
  padding: 16px 20px;
  font-size: 13px;
  color: var(--text);
  font-weight: 400;
  white-space: normal;
  position: relative;
  transition: background 0.2s ease, padding-left 0.2s ease;
}


.nav-menu .sub-menu a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--blue);
  transform: scaleY(0);
  transition: transform 0.25s ease;
}

.nav-menu .sub-menu a:hover {
  background: var(--cream2);
  padding-left: 24px;
}

.nav-menu .sub-menu a:hover::before {
  transform: scaleY(1);
}

.nav-sub-head {
  display: flex;
  align-items: center;
}

.nav-sub-title {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text);
  transition: color 0.2s ease;
}

.nav-menu .sub-menu a:hover .nav-sub-title { color: var(--blue); }


.nav-menu .sub-menu li.current-menu-item > a,
.nav-menu .sub-menu li.current_page_item > a,
.nav-menu .sub-menu a[aria-current="page"] {
  background: var(--cream2);
}

.nav-menu .sub-menu li.current-menu-item > a::before,
.nav-menu .sub-menu li.current_page_item > a::before,
.nav-menu .sub-menu a[aria-current="page"]::before {
  transform: scaleY(1);
}

.nav-menu .sub-menu li.current-menu-item > a .nav-sub-title,
.nav-menu .sub-menu li.current_page_item > a .nav-sub-title,
.nav-menu .sub-menu a[aria-current="page"] .nav-sub-title {
  color: var(--blue);
}

.nav-sub-desc {
  font-size: 12px;
  font-weight: 400;
  color: var(--mid);
  line-height: 1.45;
}


.nav-sub-badge {
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 10px;
  font-weight: 600;
  background: var(--blue);
  color: var(--ivory);
  padding: 1px 6px;
  border-radius: var(--r-pill);
  white-space: nowrap;
}

.nav-ext-icon {
  position: absolute;
  top: 18px;
  right: 18px;
  opacity: 0.3;
}

.nav-menu .sub-menu a:hover .nav-ext-icon {
  opacity: 0.6;
}


.nav-chevron {
  display: inline-block;
  margin-left: 4px;
  vertical-align: middle;
  transition: transform 0.2s ease;
  opacity: 0.6;
}

.nav-menu .menu-item-has-children:hover .nav-chevron,
.nav-menu .menu-item-has-children.dropdown-open .nav-chevron {
  transform: rotate(180deg);
  opacity: 1;
}


.nav-menu .menu-item-has-children > a::before {
  display: none;
}


.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  width: 36px;
  height: 36px;
  border-radius: var(--r-md);
  transition: background 0.15s;
}

.nav-hamburger:hover { background: rgba(3,70,148,0.06); }

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--blue);
  border-radius: var(--r-sm);
  transition: transform 0.25s ease, opacity 0.2s ease;
  transform-origin: center;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 300px;
  height: 100dvh;
  background: var(--cream);
  z-index: 1000;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 4px 0 24px rgba(0,0,0,0.12);
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(13,27,42,0.58);
  z-index: 999;
  opacity: 0;
  
  pointer-events: none;
  transition: opacity 0.3s;
}

.mobile-menu-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 16px;
  border-bottom: 1px solid rgba(3,70,148,0.1);
}

.mobile-menu-logo { height: 36px; width: auto; }

.mobile-menu-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--blue);
  padding: 4px;
  border-radius: var(--r-sm);
  line-height: 0;
}

.mobile-menu-nav { padding: 8px 0; }


.mobile-menu-extra {
  padding: 18px 20px 24px;
  border-top: 1px solid rgba(3,70,148,0.1);
  margin-top: 6px;
}

.mobile-menu-extra-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--mid);
  margin: 0 0 12px;
}

.mobile-menu-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mobile-menu-links a {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  background: var(--cream2);
  text-decoration: none;
  padding: 7px 13px;
  border-radius: var(--r-pill);
  transition: background var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}

.mobile-menu-links a:hover,
.mobile-menu-links a:active {
  background: var(--blue);
  color: var(--ivory);
}

.mobile-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-nav-list > li > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  font-size: 15px;
  font-weight: 600;
  color: var(--blue);
  border-bottom: 1px solid rgba(3,70,148,0.06);
  border-left: 3px solid transparent;
  cursor: pointer;
  transition: background var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
}


.mobile-nav-list > li.current-menu-item > a,
.mobile-nav-list > li.current-menu-ancestor > a,
.mobile-nav-list > li.current-menu-parent > a,
.mobile-nav-list > li.current_page_item > a,
.mobile-nav-list > li.current_page_ancestor > a,
.mobile-nav-list > li > a[aria-current="page"] {
  font-weight: 700;
  border-left-color: var(--blue);
  background: rgba(3,70,148,0.05);
}

.mobile-nav-list .sub-menu {
  display: none;
  list-style: none;
  background: rgba(3,70,148,0.03);
  border-bottom: 1px solid rgba(3,70,148,0.08);
  padding: 4px 0;
}

.mobile-nav-list .sub-menu.open { display: block; }

.mobile-nav-list .sub-menu a {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  padding: 11px 28px;
  font-size: 13px;
  color: var(--text);
  border: none;
  position: relative;
}

.mobile-nav-list .sub-menu a:hover .nav-sub-title { color: var(--blue); }

.mobile-nav-list .nav-sub-title { font-weight: 700; }

.mobile-nav-list .nav-sub-desc {
  font-size: 11.5px;
  color: var(--mid);
  line-height: 1.4;
}

.mobile-nav-list .nav-sub-badge {
  font-size: 9px;
  padding: 1px 5px;
  top: 11px;
  right: 28px;
}

.mobile-nav-list .nav-chevron {
  flex-shrink: 0;
  transition: transform 0.2s;
}

.mobile-nav-list > li.dropdown-open .nav-chevron { transform: rotate(180deg); }

.nav-search-btn {
  background: transparent;
  border: none;
  color: var(--blue);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  transition: color 0.2s, background 0.2s;
  flex-shrink: 0;
}

.nav-search-btn:hover {
  color: var(--blue);
  background: rgba(3,70,148,0.08);
}


.hero {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  background: var(--blue);
}

#hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: var(--hero-photo-url, none);
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  will-change: transform;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 64px 40px 170px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.7s 0.2s forwards;
}

.hero-tag-text {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--yellow);
  text-shadow: 0 0 8px rgba(255, 222, 0, 0.4);
  padding: 6px 16px;
  border: 1px solid var(--yellow);
  white-space: nowrap;
  max-width: 90vw;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero-h1 {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 700;
  color: var(--ivory);
  line-height: 1.15;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 16px;
  text-align: center;
}


.hero-h1 .h1-line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.1em;
  margin-bottom: -0.1em;
  white-space: nowrap;
}

.hero-h1 .h1-inner {
  display: block;
  opacity: 0;
  transform: translateY(100%);
  animation: lineRevealUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-h1 .h1-line:nth-child(1) .h1-inner { 
  animation-delay: 0.15s; 
  font-style: normal;
}
.hero-h1 .h1-line:nth-child(2) .h1-inner { animation-delay: 0.35s; }

.hero-h1 em {
  display: block;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 24px;
  font-weight: 800;
  color: var(--yellow);
  letter-spacing: 0.4em;
  text-transform: uppercase;
  margin-top: 14px;
}

@keyframes lineRevealUp {
  to { opacity: 1; transform: translateY(0); }
}

.hero-sub {
  font-size: 16px;
  color: rgba(240,230,210,0.6);
  line-height: 1.65;
  margin-bottom: 20px;
  font-weight: 300;
  text-align: center;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.7s 0.5s forwards;
}

.hero-sub span {
  display: block;
}


.hero-search-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  justify-content: center;
}

.hero-search-badge {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--yellow);
  padding: 3px 8px;
  line-height: 1.5;
}

.hero-search-eyebrow-text {
  font-size: 12px;
  color: rgba(240,230,210,0.45);
  letter-spacing: 0.02em;
}


.hero-platforms {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 4px 0;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-platforms-label {
  font-size: 11px;
  color: rgba(240,230,210,0.35);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-right: 4px;
}

.hero-platform-item {
  font-size: 11px;
  color: rgba(240,230,210,0.5);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.hero-platform-dot {
  color: rgba(240,230,210,0.2);
  font-size: 12px;
}


.hero-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  opacity: 0;
  animation: fadeUp 0.6s 0.65s forwards;
  justify-content: center;
}

.hero-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 11px 22px;
  border: 1.5px solid var(--yellow);
  border-radius: var(--r-md);
  background: var(--yellow);
  color: var(--blue);
  transition: transform 0.22s cubic-bezier(0.34,1.4,0.64,1),
              box-shadow 0.22s ease,
              background 0.15s;
  white-space: nowrap;
}

.hero-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255,222,0,0.3);
  color: var(--blue);
}

.hero-cta-btn:active {
  transform: translateY(0);
}


.onesearch-float {
  position: relative;
  z-index: 10;
  margin-top: -128px;
  padding: 0 40px;
}

.onesearch-float-inner {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
  background: linear-gradient(180deg,
    var(--cream2) 0%,
    var(--cream3) 32%,
    #A9BEDA 50%,
    #3E6BA3 66%,
    var(--blue) 84%,
    var(--blue) 100%
  );
  border-radius: var(--r-lg);
  
  clip-path: polygon(0 0, calc(100% - 34px) 0, 100% 34px, 100% 100%, 0 100%);
  padding: 26px 32px 24px;
  box-shadow: 0 4px 6px rgba(26,42,58,0.06),
              0 14px 36px rgba(26,42,58,0.18);
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.7s 0.15s forwards;
  transition: box-shadow 0.3s ease, transform 0.3s ease, clip-path 0.3s ease;
}

.onesearch-float-inner:hover {
  box-shadow: 0 6px 10px rgba(26,42,58,0.08),
              0 20px 44px rgba(26,42,58,0.22);
  transform: translateY(-3px);
  clip-path: polygon(0 0, calc(100% - 42px) 0, 100% 42px, 100% 100%, 0 100%);
}


.onesearch-float-inner::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, var(--cream3) 0%, #d8cba8 100%);
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  box-shadow: -3px 3px 8px rgba(26,42,58,0.28);
  transition: width 0.3s ease, height 0.3s ease;
  z-index: 3;
  pointer-events: none;
}

.onesearch-float-inner:hover::after {
  width: 42px;
  height: 42px;
}


.os-mote {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--yellow);
  opacity: 0;
  pointer-events: none;
  z-index: 1;
  animation: osMoteDrift 6s ease-in infinite;
}

.os-mote:nth-child(1) { left: 8%;  bottom: 10%; animation-delay: 0s;   }
.os-mote:nth-child(2) { left: 22%; bottom: 20%; animation-delay: 1.2s; background: var(--blue); }
.os-mote:nth-child(3) { left: 45%; bottom: 5%;  animation-delay: 2.4s; }
.os-mote:nth-child(4) { left: 68%; bottom: 25%; animation-delay: 3.6s; background: var(--blue); }
.os-mote:nth-child(5) { left: 85%; bottom: 8%;  animation-delay: 4.8s; }

@keyframes osMoteDrift {
  0%   { opacity: 0; transform: translateY(0) scale(0.6); }
  15%  { opacity: 0.55; }
  85%  { opacity: 0.35; }
  100% { opacity: 0; transform: translateY(-90px) scale(1); }
}

.onesearch-float-head {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.onesearch-badge {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--yellow);
  padding: 4px 10px;
  border-radius: var(--r-sm);
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  transform: rotate(-2.5deg);
  box-shadow: 0 3px 8px rgba(26,42,58,0.25);
  transition: transform 0.25s ease;
}

.onesearch-float-inner:hover .onesearch-badge {
  transform: rotate(-2.5deg) translateY(-2px);
}

.onesearch-badge::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(3,70,148,0.15);
  transform: scaleX(0);
  transform-origin: left;
  animation: badgeSweep 2.4s 0.6s ease-in-out infinite;
}

@keyframes badgeSweep {
  0%   { transform: scaleX(0);  transform-origin: left; }
  45%  { transform: scaleX(1);  transform-origin: left; }
  55%  { transform: scaleX(1);  transform-origin: right; }
  100% { transform: scaleX(0);  transform-origin: right; }
}

.onesearch-desc {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(3,70,148,0.5);
  letter-spacing: 0.01em;
}

.onesearch-field {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1.5px solid rgba(3,70,148,0.12);
  border-radius: var(--r-md);
  padding: 6px 6px 6px 18px;
  background: var(--cream);
  box-shadow: 0 2px 10px rgba(26,42,58,0.1);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.onesearch-field:focus-within {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(26,42,58,0.12);
}

.onesearch-field > svg {
  color: rgba(3,70,148,0.35);
  flex-shrink: 0;
  transition: color 0.25s ease, transform 0.25s ease;
}

.onesearch-field:focus-within > svg {
  color: var(--blue);
  transform: scale(1.1);
}

.onesearch-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-size: 15px;
  color: var(--blue);
  font-family: var(--font-body);
  padding: 9px 0;
  min-width: 0;
}

.onesearch-input::placeholder {
  color: rgba(3,70,148,0.45);
}

.onesearch-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--blue);
  color: var(--yellow);
  border: none;
  border-radius: var(--r-md);
  padding: 11px 20px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  transition: background 0.15s, transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}

.onesearch-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,222,0,0.35), transparent);
  transform: skewX(-20deg);
  transition: left 0.5s ease;
}

.onesearch-btn:hover::before {
  left: 130%;
}

.onesearch-btn:hover {
  background: #023080;
  transform: translateX(2px);
  box-shadow: 0 4px 14px rgba(26,42,58,0.3);
}

.onesearch-btn:active {
  transform: translateX(1px) scale(0.98);
}

.onesearch-btn svg {
  transition: transform 0.2s ease;
}

.onesearch-btn:hover svg {
  transform: translateX(2px);
}

.onesearch-platforms {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.onesearch-platforms span:not(.os-dot) {
  font-family: var(--font-body);
  font-size: 11px;
  color: rgba(240,230,210,0.6);
  transition: color 0.15s ease;
  cursor: default;
}

.onesearch-platforms span:not(.os-dot):hover {
  color: var(--yellow);
  font-weight: 600;
}

.os-dot {
  color: rgba(240,230,210,0.3) !important;
}


.platform-panel {
  position: fixed;
  inset: 0;
  background: rgba(2,30,80,0.97);
  z-index: 8000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 32px 40px;
}

.platform-panel.open {
  opacity: 1;
  pointer-events: all;
}

.platform-panel-inner {
  width: 100%;
  max-width: 860px;
  transform: translateY(16px) scale(0.98);
  transition: transform 0.35s cubic-bezier(0.34, 1.3, 0.64, 1), opacity 0.3s ease;
  opacity: 0;
}

.platform-panel.open .platform-panel-inner {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.platform-panel-inner {
  width: 100%;
  max-width: 860px;
}

.platform-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.platform-panel-query {
  font-size: 17px;
  color: rgba(240,230,210,0.6);
  font-family: var(--font-body);
}

.platform-panel-query strong {
  color: var(--yellow);
  font-style: italic;
  font-family: var(--font-display);
  font-size: 17px;
}

.platform-panel-close {
  background: rgba(240,230,210,0.1);
  border: none;
  color: rgba(240,230,210,0.6);
  width: 36px;
  height: 36px;
  font-size: 17px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
}

.platform-panel-close:hover {
  background: rgba(240,230,210,0.2);
  color: var(--ivory);
}

.platform-panel-sub {
  font-size: 17px;
  color: rgba(240,230,210,0.35);
  margin-bottom: 20px;
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

@media (max-width: 900px) {
  .platform-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .platform-grid { grid-template-columns: 1fr; }
}

.platform-card {
  background: rgba(240,230,210,0.06);
  border: 1px solid rgba(240,230,210,0.08);
  border-radius: var(--r-lg);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  transition: background 0.2s ease,
              border-color 0.2s ease,
              transform 0.35s cubic-bezier(0.34, 1.4, 0.64, 1);
  text-decoration: none;
}

.platform-card:hover {
  transform: translateY(-3px);
}

.platform-card:hover {
  background: rgba(240,230,210,0.12);
  border-color: var(--yellow);
}

.pc-icon {
  width: 42px;
  height: 42px;
  background: rgba(240,230,210,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow);
  flex-shrink: 0;
  transition: background 0.15s;
}

.platform-card:hover .pc-icon {
  background: var(--yellow);
  color: var(--blue);
}

.pc-body {
  flex: 1;
  min-width: 0;
}

.pc-name {
  font-size: 17px;
  font-weight: 700;
  color: var(--ivory);
  margin-bottom: 3px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.pc-desc {
  font-size: 17px;
  color: rgba(240,230,210,0.4);
  line-height: 1.4;
}

.pc-badge {
  background: var(--yellow);
  color: var(--blue);
  font-size: 17px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: var(--r-sm);
  letter-spacing: 0.06em;
}


.platform-card--disabled {
  pointer-events: none;
  opacity: 0.45;
  cursor: not-allowed;
}

.platform-card--disabled .pc-badge {
  background: rgba(240,230,210,0.15);
  color: var(--ivory);
}

.pc-arrow {
  color: rgba(240,230,210,0.25);
  font-size: 17px;
  flex-shrink: 0;
  transition: color 0.15s, transform 0.15s;
}

.platform-card:hover .pc-arrow {
  color: var(--yellow);
  transform: translateX(3px);
}


.search-wrap {
  position: relative;
  z-index: 3;
  padding: 0 40px;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.7s 0.65s forwards;
}

.search-box {
  background: var(--cream);
  border-top: 3px solid var(--yellow);
  max-width: 1200px;
  margin: 0 auto;
}

.search-tabs {
  display: flex;
  background: var(--cream2);
  overflow-x: auto;
  scrollbar-width: none;
}

.search-tabs::-webkit-scrollbar {
  display: none;
}

.stab {
  padding: 12px 18px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #8a7a6a;
  cursor: pointer;
  border: none;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  font-family: var(--font-body);
  background: transparent;
  transition: color 0.15s, background 0.15s, border-color 0.15s;
}

.stab.active {
  color: var(--blue);
  border-bottom-color: var(--blue);
  background: var(--cream);
}

.stab:hover:not(.active) {
  color: var(--blue);
  background: rgba(3,70,148,0.04);
}

.search-row {
  display: flex;
}

.search-input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 18px 20px;
  font-size: 17px;
  color: var(--text);
  font-family: var(--font-body);
  outline: none;
  font-weight: 400;
  min-width: 0;
}

.search-input::placeholder {
  color: #c0b0a0;
}

.search-btn {
  background: var(--blue);
  color: var(--yellow);
  border: none;
  border-radius: 0 12px 12px 0;
  padding: 0 32px;
  height: 58px;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: var(--font-body);
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.2s ease;
}

.search-btn:hover {
  transform: translateY(-2px);
  background: #023080;
}

.search-btn svg {
  color: var(--yellow);
}

.search-hints {
  padding: 10px 20px 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-top: 1px solid var(--cream2);
  flex-wrap: wrap;
}

.sh-label {
  font-size: 17px;
  color: #9a8a7a;
  margin-right: 2px;
}

.sh-chip {
  background: var(--cream2);
  padding: 4px 10px;
  font-size: 17px;
  color: #5a4a3a;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: background 0.15s, color 0.15s;
  border: none;
  cursor: pointer;
}

.sh-chip:hover {
  background: var(--blue);
  color: var(--yellow);
}


.platforms-marquee {
  background: var(--blue);
  border-top: 1px solid rgba(240,230,210,0.07);
  padding: 14px 0;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 32s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 28px;
  border-right: 1px solid rgba(240,230,210,0.08);
  white-space: nowrap;
  transition: opacity 0.2s;
}

.marquee-item:hover {
  opacity: 1;
}

.marquee-item:hover .mi-name {
  color: var(--yellow);
}

.mi-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(240,230,210,0.25);
  flex-shrink: 0;
}

.mi-name {
  font-size: 17px;
  color: rgba(240,230,210,0.55);
  font-family: var(--font-body);
  font-weight: 500;
  transition: color 0.2s;
}

.mi-badge {
  background: var(--yellow);
  color: var(--blue);
  padding: 2px 6px;
  font-size: 17px;
  font-weight: 800;
  flex-shrink: 0;
}


.section-services {
  position: relative;
  padding: 44px 0 56px;
  background: var(--cream);
  overflow: hidden;
}


.svc-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.section-services .section-inner {
  position: relative;
  z-index: 1;
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.svc-card {
  display: block;
  background: var(--paper);
  border-radius: var(--r-lg);
  box-shadow: 0 4px 16px rgba(13,27,42,0.06);
  padding: 40px 30px 32px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: background 0.4s ease,
              transform 0.55s cubic-bezier(0.34, 1.4, 0.64, 1),
              box-shadow 0.5s ease;
}

.svc-card:hover {
  background: var(--cream2);
  transform: translateY(-3px);
  box-shadow: 0 24px 56px rgba(26,42,58,0.13);
}


.svc-num {
  position: absolute;
  top: 12px;
  right: 20px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 76px;
  font-weight: 700;
  color: rgba(3,70,148,0.055);
  line-height: 1;
  user-select: none;
  transition: color 0.4s ease, transform 0.4s ease;
  z-index: 0;
}

.svc-card:hover .svc-num {
  color: rgba(3,70,148,0.09);
  transform: scale(1.06);
}


.svc-ico {
  position: relative;
  z-index: 1;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid var(--blue);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background 0.3s ease, transform 0.3s ease;
  flex-shrink: 0;
}

.svc-ico svg {
  width: 21px;
  height: 21px;
  color: var(--blue);
  transition: color 0.3s ease;
}

.svc-card:hover .svc-ico {
  background: var(--blue);
  transform: scale(1.08);
}

.svc-card:hover .svc-ico svg {
  color: var(--yellow);
}

.svc-name {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.25;
}

.svc-desc {
  position: relative;
  z-index: 1;
  font-size: 15px;
  color: #6a5a4a;
  line-height: 1.75;
  margin-bottom: 18px;
}


.svc-rule {
  position: relative;
  z-index: 1;
  width: 28px;
  height: 2px;
  background: var(--blue);
  margin-bottom: 14px;
  transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.svc-card:hover .svc-rule {
  width: 56px;
}

.svc-arrow {
  position: relative;
  z-index: 1;
  font-size: 14px;
  color: var(--blue);
  font-weight: 700;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap 0.2s ease;
}

.svc-card:hover .svc-arrow {
  gap: 10px;
}


.section-news {
  background: var(--cream2);
  padding: 56px 0;
  border-top: 2px solid var(--cream3);
}

.news-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  border-bottom: 2px solid rgba(3,70,148,0.1);
}

.news-tab {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--mid);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 10px 16px;
  cursor: pointer;
  transition: color 0.15s, border-color 0.15s;
  margin-bottom: -2px;
}

.news-tab.active { color: var(--blue); border-color: var(--blue); }
.news-tab:hover:not(.active) { color: var(--blue); }

.news-panel { display: none; }
.news-panel.active { display: block; }

.news-empty {
  font-size: 15px;
  color: var(--mid);
  padding: 40px 0;
  text-align: center;
}

.news-featured-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
}

.news-card {
  display: block;
  background: var(--cream);
  border-radius: var(--r-lg);
  box-shadow: 0 4px 16px rgba(13,27,42,0.05);
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  transition: transform 0.6s cubic-bezier(0.34, 1.2, 0.64, 1),
              box-shadow 0.5s ease;
}

.news-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 28px 60px rgba(26,42,58,0.16);
}

.news-thumb {
  position: relative;
  overflow: hidden;
  background: var(--blue);
  height: 260px;
}

.news-card-big .news-thumb {
  height: 260px;
}

.news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.75;
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
}

.news-card:hover .news-thumb img {
  transform: scale(1.07);
  opacity: 0.9;
}

.news-thumb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(3,70,148,0.45) 100%);
  pointer-events: none;
}

.news-cat {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--yellow);
  color: var(--blue);
  font-size: 17px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: var(--r-sm);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.news-body {
  padding: 24px;
}

.news-date {
  font-size: 17px;
  color: #9a8070;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}

.news-title {
  display: block;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 10px;
  transition: color var(--transition);
}

.news-card-big:hover .news-title {
  color: var(--blue);
}

.news-excerpt {
  font-size: 17px;
  color: #6a5a4a;
  line-height: 1.7;
  margin-bottom: 16px;
}

.news-read {
  font-size: 17px;
  color: var(--blue);
  font-weight: 700;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap 0.2s ease;
}

.news-card:hover .news-read {
  gap: 10px;
}


.news-side {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.nsi {
  display: flex;
  background: var(--cream);
  border-radius: var(--r-lg);
  box-shadow: 0 3px 12px rgba(13,27,42,0.05);
  padding: 16px;
  gap: 14px;
  align-items: flex-start;
  text-decoration: none;
  color: inherit;
  transition: background var(--transition), transform 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
}

.nsi:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(26,42,58,0.12);
  background: var(--cream2);
}

.nsi-img-link {
  display: block;
  flex-shrink: 0;
}

.nsi img {
  width: 80px;
  height: 64px;
  object-fit: cover;
  filter: saturate(0.8);
  transition: filter var(--transition);
}

.nsi:hover img {
  filter: saturate(1);
}

.nsi-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nsi-cat {
  display: block;
  font-size: 17px;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.nsi-title {
  display: block;
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.45;
  transition: color var(--transition);
}

.nsi:hover .nsi-title {
  color: var(--blue);
}

.nsi-date {
  font-size: 17px;
  color: #9a8070;
  margin-top: 5px;
}


.section-stats {
  background: var(--cream);
  position: relative;
  overflow: hidden;
  padding: 44px 0;
  border-top: 2px solid var(--cream3);
}


.stats-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.stats-head {
  text-align: center;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.section-stats .sec-title {
  color: var(--text);
}


.stats-panel {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  background: var(--paper);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--cream3);
  box-shadow: 0 16px 40px rgba(26,42,58,0.1);
}


.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
}

.stat-item {
  background: var(--paper);
  border-radius: var(--r-lg);
  box-shadow: 0 4px 16px rgba(13,27,42,0.05);
  padding: 28px 26px;
  position: relative;
  overflow: hidden;
  text-align: left;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 26px rgba(26,42,58,0.12);
  background: var(--cream);
}


.stat-top {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.stat-ico {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1.5px solid rgba(3,70,148,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.34, 1.3, 0.64, 1), background 0.3s ease;
}

.stat-item:hover .stat-ico {
  transform: scale(1.1) rotate(-6deg);
  background: rgba(3,70,148,0.08);
}

.stat-n {
  display: flex;
  align-items: baseline;
  gap: 3px;
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 900;
  color: var(--blue);
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat-n-suffix {
  font-size: 0.5em;
  font-weight: 800;
  color: var(--accent3);
}

.stat-l {
  font-size: 12px;
  color: var(--mid);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.4;
  font-weight: 600;
  transition: color 0.3s ease;
}

.stat-item:hover .stat-l {
  color: var(--text);
}


.section-about {
  padding: 56px 0;
  background: var(--cream);
  border-top: 2px solid var(--cream3);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
}

.about-accent {
  position: absolute;
  top: -12px;
  left: -12px;
  width: 80px;
  height: 80px;
  border: 3px solid var(--yellow);
  z-index: 0;
  pointer-events: none;
}

.about-img {
  height: 320px;
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.about-img img,
.about-img-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85);
  transition: transform 0.6s ease;
}

.about-img:hover img {
  transform: scale(1.04);
}

.about-img-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: var(--yellow);
  border-radius: var(--r-md);
  padding: 7px 14px;
  font-size: 17px;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-content {
  position: relative;
  z-index: 1;
}

.about-h2 {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 16px;
}

.about-p {
  font-size: 17px;
  color: #5a4a3a;
  line-height: 1.85;
  margin-bottom: 28px;
}

.about-btn {
  display: inline-block;
  background: var(--blue);
  color: var(--yellow);
  border: none;
  border-radius: var(--r-md);
  padding: 14px 28px;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: var(--font-body);
  transition: background 0.25s ease,
              transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

.about-btn:hover {
  background: #023080;
  color: var(--yellow);
}


.site-footer {
  background: var(--dark);
  padding: 48px 40px 20px;
  position: relative;
  overflow: hidden;
}


.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--yellow) 100%);
}


.site-footer::after {
  content: "";
  position: absolute;
  top: -120px;
  right: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(3,70,148,0.35), transparent 70%);
  pointer-events: none;
}

.footer-inner { position: relative; z-index: 1; }

.footer-top {
  display: grid;
  grid-template-columns: 270px 0.85fr 0.85fr 230px;
  gap: 0;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(240,230,210,0.08);
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top > div {
  padding: 0 28px;
  border-left: 1px solid rgba(240,230,210,0.07);
}

.footer-top > div:first-child {
  padding-left: 0;
  border-left: none;
}

.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.footer-logo-img {
  display: block;
  max-height: 36px;
  width: auto;
}

.footer-logo-divider {
  width: 1px;
  height: 28px;
  background: rgba(240,230,210,0.15);
  flex-shrink: 0;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--ivory);
  margin-bottom: 12px;
  line-height: 1.3;
}

.footer-addr {
  font-size: 13.5px;
  color: rgba(240,230,210,0.5);
  line-height: 1.8;
  font-style: normal;
}

.footer-addr a {
  color: rgba(240,230,210,0.62);
  transition: color var(--transition);
}

.footer-addr a:hover {
  color: var(--yellow);
}

.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent3-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.footer-hours {
  list-style: none;
}

.footer-hours li {
  font-size: 13.5px;
  color: rgba(240,230,210,0.62);
  margin-bottom: 5px;
  line-height: 1.5;
}

.footer-hours .hours-label {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--accent3-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 9px;
}

.footer-hours .hours-label:first-child {
  margin-top: 0;
}

.footer-contact {
  list-style: none;
  margin-bottom: 12px;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: rgba(240,230,210,0.62);
  margin-bottom: 9px;
}

.footer-contact li svg { flex-shrink: 0; color: var(--yellow); opacity: 0.85; }

.footer-contact a {
  color: rgba(240,230,210,0.62);
  transition: color var(--transition);
}

.footer-contact a:hover { color: var(--yellow); }

.footer-social {
  display: flex;
  gap: 8px;
}

.footer-social-link {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(240,230,210,0.06);
  color: rgba(240,230,210,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.footer-social-link:hover {
  background: var(--yellow);
  color: var(--dark);
  transform: translateY(-3px);
}

.footer-col--map { display: flex; flex-direction: column; }


.footer-map-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-md);
  border: 1px solid rgba(240,230,210,0.1);
  aspect-ratio: 4 / 3;
  pointer-events: none;
  transition: border-color 0.3s ease;
}

.footer-col--map:hover .footer-map-frame { border-color: var(--yellow); }

.footer-map-frame iframe {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  border: none !important;
  
  filter: grayscale(0.4) invert(0.92) contrast(0.9) brightness(0.95) hue-rotate(180deg);
}

.footer-map-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--yellow);
  margin-top: 8px;
  transition: gap 0.2s ease;
}

.footer-map-link:hover { gap: 9px; }

.footer-bottom {
  max-width: 1200px;
  margin: 20px auto 0;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy,
.footer-ut {
  font-size: 12.5px;
  color: rgba(240,230,210,0.35);
}


.page-content {
  padding: 56px 0;
  min-height: 60vh;
}

.page-content .section-inner {
  max-width: 840px;
}

.page-hero {
  background: var(--blue);
  padding: 48px 40px;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  color: var(--ivory);
  line-height: 1.1;
}

.page-hero .breadcrumb {
  font-size: 17px;
  color: rgba(240,230,210,0.4);
  margin-bottom: 12px;
  display: flex;
  gap: 6px;
  align-items: center;
}

.page-hero .breadcrumb a {
  color: rgba(240,230,210,0.4);
  transition: color var(--transition);
}

.page-hero .breadcrumb a:hover {
  color: var(--yellow);
}




.profil-dock {
  position: fixed;
  right: 26px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 150;
  display: flex;
  flex-direction: column;
  gap: 15px;
  background: var(--cream);
  border: 1px solid var(--cream3);
  border-radius: var(--r-lg);
  padding: 22px 20px 22px 16px;
  box-shadow: 0 24px 60px rgba(26,42,58,0.16), 0 2px 0 rgba(240,230,210,0.6) inset;
}

.profil-dock-track {
  position: absolute;
  left: 16px;
  top: 22px;
  bottom: 22px;
  width: 2px;
  background: var(--cream3);
}

.profil-dock-indicator {
  position: absolute;
  left: -2px;
  top: 0;
  width: 6px;
  height: 24px;
  border-radius: var(--r-sm);
  background: var(--blue);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.profil-dock-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  padding-left: 12px;
}

.profil-dock-tick {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cream3);
  flex-shrink: 0;
  transition: background 0.25s ease, transform 0.25s ease;
}

.profil-dock-item.active .profil-dock-tick {
  background: var(--blue);
  transform: scale(1.3);
}

.profil-dock-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--mid);
  white-space: nowrap;
  transition: color 0.25s ease;
}

.profil-dock-item:hover .profil-dock-label { color: var(--blue); }
.profil-dock-item.active .profil-dock-label { color: var(--blue); }


@media (max-width: 1100px) and (min-width: 769px) {
  .profil-dock-label { display: none; }
  .profil-dock { padding: 18px 14px; }
}


@media (max-width: 768px) {
  .profil-dock {
    right: auto;
    left: 50%;
    top: auto;
    bottom: 16px;
    transform: translateX(-50%);
    max-width: calc(100vw - 88px);
    flex-direction: row;
    align-items: center;
    gap: 4px;
    padding: 10px 16px;
    border-radius: 999px;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .profil-dock::-webkit-scrollbar { display: none; }

  .profil-dock-track,
  .profil-dock-indicator { display: none; }

  .profil-dock-item {
    padding: 8px 14px;
    flex-shrink: 0;
    border-radius: 999px;
    transition: background 0.25s ease;
  }

  .profil-dock-item.active { background: var(--blue); }

  .profil-dock-tick { display: none; }

  .profil-dock-label {
    color: var(--mid);
    font-size: 12px;
  }

  .profil-dock-item.active .profil-dock-label { color: var(--ivory); }
}


.profil-page {
  padding: 48px 0 80px;
  position: relative;
  overflow: hidden;
  
  background:
    radial-gradient(ellipse 120% 60% at 50% 0%, rgba(3,70,148,0.05), transparent 60%),
    linear-gradient(180deg, #FBF8F1 0%, var(--cream) 35%, #F0E9DA 100%);
}

.profil-page .section-inner { max-width: 1160px; position: relative; z-index: 1; }


.profil-page::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.9;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0.1  0 0 0 0 0.16  0 0 0 0 0.28  0 0 0 0.05 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}


.profil-page::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to bottom, rgba(3,70,148,0.06), transparent);
  pointer-events: none;
  z-index: 0;
}

.profil-prose { margin-top: 0; }

.profil-block {
  scroll-margin-top: 84px;
  padding: 56px 0;
  border-bottom: 1px solid var(--cream3);
}

.profil-block:last-child { border-bottom: none; padding-bottom: 0; }
.profil-block:first-child { padding-top: 0; }

.profil-prose h2 {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.15;
  margin: 0 0 32px;
}

.profil-prose h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  font-style: italic;
  color: var(--blue);
  line-height: 1.3;
  margin: 36px 0 16px;
}

.profil-prose h3:first-child { margin-top: 0; }

.profil-prose p {
  font-size: 16px;
  color: var(--mid);
  line-height: 1.85;
  margin-bottom: 18px;
}

.profil-prose strong { color: var(--text); }


.profil-hero-photo { padding: 40px 0 8px; }

.profil-hero-photo-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-sm);
  box-shadow: 0 30px 70px rgba(26,42,58,0.22);
  aspect-ratio: 21 / 9;
}

.profil-hero-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.profil-hero-photo-placeholder {
  width: 100%;
  height: 100%;
  background: var(--cream2);
}


.profil-hero-photo-fold {
  position: absolute;
  top: 0;
  right: 0;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--cream) 50%, #d8cfba 52%);
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  box-shadow: -6px 6px 14px rgba(0,0,0,0.25);
}


.profil-history-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 48px;
  align-items: start;
}

.profil-history-aside {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (max-width: 900px) {
  .profil-history-grid { grid-template-columns: 1fr; }
  .profil-history-aside { position: static; }
  .profil-hero-photo-frame { aspect-ratio: 4 / 3; }
}


.profil-org-caption {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent3);
  margin: -20px 0 32px;
  max-width: none;
}

.org-chart {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 0 8px;
}

.org-node {
  background: var(--paper);
  border: 1px solid var(--cream3);
  border-radius: var(--r-lg);
  padding: 18px 26px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 10px 26px rgba(26,42,58,0.08);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.org-node:hover {
  box-shadow: 0 16px 36px rgba(26,42,58,0.14);
  transform: translateY(-3px);
}

.org-node--head {
  background: var(--blue);
  border-color: var(--blue);
}

.org-node-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}

.org-node--head .org-node-title { color: var(--yellow); }

.org-node-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
}

.org-node--head .org-node-name { color: var(--ivory); }


.org-node--stack {
  position: relative;
  background: var(--cream);
}

.org-node--stack::before,
.org-node--stack::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--paper);
  border: 1px solid var(--cream3);
  border-radius: var(--r-lg);
  z-index: -1;
}

.org-node--stack::before { transform: rotate(-3deg) translate(2px, 3px); }
.org-node--stack::after  { transform: rotate(3deg) translate(-2px, 4px); }

.org-node--sm { padding: 14px 20px; }
.org-node--sm .org-node-title { font-size: 13px; }

.org-row { display: flex; justify-content: center; }
.org-row--side { justify-content: flex-end; width: 100%; max-width: 780px; }

.org-connectors {
  position: relative;
  width: 2px;
  height: 60px;
  background: var(--cream3);
}

.org-row--managers {
  width: 100%;
  gap: 32px;
  margin-top: 48px;
  position: relative;
}

.org-row--managers::before {
  content: "";
  position: absolute;
  top: -48px;
  left: 16.66%;
  right: 16.66%;
  height: 2px;
  background: var(--cream3);
}

.org-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.org-col::before {
  content: "";
  position: absolute;
  top: -48px;
  left: 50%;
  width: 2px;
  height: 48px;
  background: var(--cream3);
  transform: translateX(-50%);
}

.org-line--down {
  width: 2px;
  height: 32px;
  background: var(--cream3);
  margin: 4px 0;
}

@media (max-width: 900px) {
  .org-row--managers {
    flex-direction: column;
    gap: 40px;
  }
  .org-row--managers::before { display: none; }
  .org-col::before { display: none; }
  .org-row--side { justify-content: center; }
}


.profil-stat-highlight {
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--cream2);
  border-radius: var(--r-lg);
  padding: 28px 32px;
  margin: 0;
}

.profil-stat-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 900;
  color: var(--blue);
  line-height: 1;
  flex-shrink: 0;
}

.profil-stat-num span { color: var(--accent3); }

.profil-stat-label {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.6;
}


.profil-chips ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 8px 0 24px;
}

.profil-chips li {
  background: var(--paper);
  border: 1px solid var(--cream3);
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: 999px;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.profil-chips li:hover {
  border-color: var(--blue);
  background: var(--cream);
}


.profil-policy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.profil-policy-card {
  background: var(--cream);
  border-radius: var(--r-lg);
  box-shadow: 0 4px 16px rgba(13,27,42,0.05);
  padding: 32px;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.profil-policy-card:hover { background: var(--paper); }

.profil-policy-card h3 {
  margin: 0 0 18px;
}

.profil-policy-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.profil-policy-card li {
  position: relative;
  padding-left: 24px;
  font-size: 15px;
  color: var(--mid);
  line-height: 1.6;
}

.profil-policy-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
}


.profil-quote-banner {
  background: var(--blue);
  padding: 48px 56px;
  margin-bottom: 8px;
  position: relative;
  overflow: hidden;
}

.profil-quote-banner::before,
.profil-quote-banner::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
}

.profil-quote-banner::before {
  width: 220px;
  height: 220px;
  background: rgba(255,222,0,0.18);
  top: -80px;
  right: -60px;
}

.profil-quote-banner::after {
  width: 160px;
  height: 160px;
  background: rgba(184,73,31,0.22);
  bottom: -70px;
  left: 8%;
}

.profil-quote-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.profil-quote-banner p {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  position: relative;
  z-index: 1;
  font-style: italic;
  color: var(--ivory);
  line-height: 1.35;
  margin: 0;
  max-width: 640px;
}


.profil-misi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 24px;
}

.profil-misi-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--paper);
  border: 1px solid var(--cream3);
  border-radius: var(--r-lg);
  padding: 24px;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.profil-misi-card:hover {
  border-color: var(--blue);
  transform: translateY(-3px);
}

.profil-misi-ico {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(3,70,148,0.08);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
}

.profil-misi-card p {
  font-size: 15px;
  color: var(--text);
  line-height: 1.6;
  margin: 0;
}


.profil-legal-note {
  border-left: 3px solid var(--accent3);
  background: var(--cream);
  border-radius: 0 10px 10px 0;
  padding: 20px 28px;
  margin-bottom: 8px;
  max-width: 760px;
}

.profil-legal-note p {
  font-size: 15px;
  font-style: italic;
  margin: 0;
  max-width: none;
}


.profil-checklist ul {
  list-style: none;
  padding: 0;
  margin: 8px 0 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 24px;
}

.profil-checklist li {
  position: relative;
  padding-left: 30px;
  font-size: 15px;
  color: var(--mid);
  line-height: 1.6;
}

.profil-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(3,70,148,0.08);
}

.profil-checklist li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 8px;
  width: 8px;
  height: 5px;
  border-left: 2px solid var(--blue);
  border-bottom: 2px solid var(--blue);
  transform: rotate(-45deg);
}


.profil-program-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.profil-program-card {
  background: var(--cream);
  border-radius: var(--r-lg);
  box-shadow: 0 4px 16px rgba(13,27,42,0.05);
  padding: 28px 24px;
  position: relative;
  counter-increment: profil-program;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.profil-program-card:hover {
  background: var(--paper);
  transform: translateY(-3px);
}

.profil-program-card:hover::before { color: rgba(184,73,31,0.35); }

.profil-program-grid { counter-reset: profil-program; }

.profil-program-card::before {
  content: counter(profil-program, decimal-leading-zero);
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 34px;
  font-weight: 700;
  color: rgba(3,70,148,0.1);
  line-height: 1;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.profil-program-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 8px;
  max-width: none;
}

.profil-program-card p:not(.profil-program-title) {
  font-size: 14px;
  margin: 0;
  max-width: none;
}


.profil-address-strip {
  background: var(--cream2);
  border-radius: var(--r-lg);
  padding: 24px 28px;
  max-width: 760px;
}

.profil-address-strip p {
  margin: 0;
  max-width: none;
}

@media (max-width: 900px) {
  .profil-timeline { grid-template-columns: repeat(2, 1fr); }
  .profil-timeline-item:nth-child(2)::after { display: none; }
  .profil-policy-grid { grid-template-columns: 1fr; }
  .profil-misi-grid { grid-template-columns: 1fr; }
  .profil-program-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .profil-prose h2 { font-size: 26px; }
  .profil-quote-banner p { font-size: 24px; }
  .profil-checklist ul { grid-template-columns: 1fr; }
  .profil-timeline { grid-template-columns: 1fr; }
  .profil-timeline-item::after { display: none; }
  .profil-program-grid { grid-template-columns: 1fr; }
  .profil-stat-highlight { flex-direction: column; align-items: flex-start; gap: 12px; }
}


.single-post {
  padding: 56px 0;
}

.post-header {
  margin-bottom: 32px;
}

.post-cat {
  display: inline-block;
  background: var(--yellow);
  color: var(--blue);
  font-size: 17px;
  font-weight: 800;
  padding: 4px 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.post-title {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 10px;
}

.post-meta {
  font-size: 17px;
  color: #9a8070;
  display: flex;
  gap: 16px;
}

.post-featured-img {
  margin-bottom: 36px;
  overflow: hidden;
  max-height: 480px;
}

.post-featured-img img {
  width: 100%;
  object-fit: cover;
}

.post-content {
  font-size: 17px;
  color: var(--text);
  line-height: 1.9;
  max-width: 700px;
}

.post-content h2,
.post-content h3 {
  font-family: var(--font-display);
  color: var(--text);
  margin: 32px 0 12px;
}

.post-content p {
  margin-bottom: 20px;
}

.post-content a {
  color: var(--blue);
  text-decoration: underline;
}


.berita-hero {
  background: var(--blue);
  padding: 44px 40px 40px;
}

.berita-breadcrumb {
  font-size: 12px;
  color: rgba(240,230,210,0.4);
  margin-bottom: 16px;
  display: flex;
  gap: 6px;
  align-items: center;
  flex-wrap: wrap;
}

.berita-breadcrumb a {
  color: rgba(240,230,210,0.5);
  transition: color 0.15s;
}

.berita-breadcrumb a:hover { color: var(--yellow); }

.berita-hero-cat {
  display: inline-block;
  background: var(--yellow);
  color: var(--blue);
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: var(--r-sm);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.berita-hero-title {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 700;
  color: var(--ivory);
  line-height: 1.2;
  max-width: 820px;
  margin-bottom: 16px;
}

.berita-hero-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.berita-hero-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(240,230,210,0.55);
}

.berita-body-wrap {
  max-width: 820px;
  padding-top: 40px;
  padding-bottom: 64px;
}


.berita-gallery.banner-slider {
  height: 380px;
  border-radius: var(--r-lg);
  margin-bottom: 36px;
}

.berita-gallery .banner-controls {
  bottom: 16px;
  right: 20px;
}

.berita-single-img {
  margin-bottom: 36px;
  border-radius: var(--r-lg);
  overflow: hidden;
  max-height: 460px;
}

.berita-single-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.berita-content {
  max-width: 100%;
}

.berita-back {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--cream3);
}

.berita-back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue);
  transition: gap 0.2s ease;
}

.berita-back-link:hover { gap: 10px; }

.berita-related {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--cream3);
}

.berita-related-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
}

.berita-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.berita-related-grid .nsi {
  flex-direction: column;
}

.berita-related-grid .nsi-img-link {
  width: 100%;
}

.berita-related-grid .nsi img {
  width: 100%;
  height: 140px;
}


.page-404 {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 40px;
  background: var(--cream);
}

.page-404 .num {
  font-family: var(--font-display);
  font-size: 130px;
  font-weight: 900;
  color: var(--cream3);
  line-height: 1;
  margin-bottom: 16px;
}

.page-404 h1 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.page-404 p {
  font-size: 17px;
  color: #6a5a4a;
  margin-bottom: 28px;
}

.page-404 a {
  display: inline-block;
  background: var(--blue);
  color: var(--yellow);
  padding: 13px 28px;
  border-radius: var(--r-md);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.2s ease;
}

.page-404 a:hover {
  background: #023080;
  transform: translateY(-2px);
}


#page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

#page-loader.done {
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
}

.loader-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  position: relative;
  z-index: 2;
}


#loader-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.loader-logo-img {
  width: 240px;
  height: auto;
  filter: brightness(0) invert(1);
  opacity: 0;
  position: relative;
  z-index: 2;
  animation: loaderFadeIn 0.6s 0.1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.loader-bar {
  width: 200px;
  height: 2px;
  background: rgba(240,230,210,0.12);
  border-radius: var(--r-sm);
  overflow: hidden;
}

.loader-bar span {
  display: block;
  height: 100%;
  background: var(--yellow);
  width: 100%;
  transform: translateX(-100%);
  animation: loaderSlide 1.1s 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes loaderFadeIn {
  to { opacity: 1; }
}

@keyframes loaderSlide {
  to { transform: translateX(0); }
}


.img-block-reveal {
  position: relative;
  overflow: hidden;
}

.img-block-reveal::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--dark);
  z-index: 3;
  transform-origin: right;
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.img-block-reveal.revealed::after {
  transform: scaleX(0);
}

.img-block-reveal img {
  transform: scale(1.06);
}

.img-block-reveal.revealed img {
  transform: scale(1);
}


@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


@media (max-width: 1024px) {
  .svc-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 24px 28px;
  }

  .footer-top > div {
    border-left: none;
    padding: 0;
  }

  .news-featured-grid {
    grid-template-columns: 1fr;
  }

  .news-side {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
}

@media (max-width: 1100px) {
  .site-nav {
    padding: 0 20px;
    height: 56px;
  }

  .nav-links {
    gap: 8px;
  }

  .nav-menu,
  .nav-search-btn {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .mobile-menu,
  .mobile-menu-overlay {
    display: block;
  }

  .topbar-inner { padding: 0 14px; }
  .topbar-right .topbar-link,
  .topbar-div { display: none; }
  .topbar-left { gap: 2px; }

  .nav-logo-main {
    font-size: 17px;
  }
}

@media (max-width: 768px) {
  .onesearch-float {
    padding: 0 16px;
    margin-top: -80px;
    box-sizing: border-box;
    max-width: 100%;
  }
  
  .onesearch-float-inner {
    padding: 20px 16px;
    box-sizing: border-box;
    max-width: 100%;
  }

  .hero-content {
    padding: 40px 20px 140px;
  }

  .hero-h1 {
    font-size: 40px;
  }

  .hero-sub {
    font-size: 17px;
  }

  .search-wrap {
    padding: 0 20px;
  }

  .stab {
    padding: 10px 12px;
    font-size: 17px;
  }

  .section-inner {
    padding: 0 20px;
  }

  .sec-head--split {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .sec-title {
    font-size: 28px;
  }

  .svc-grid {
    grid-template-columns: 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .news-side {
    grid-template-columns: 1fr;
  }
  .hero-cta {
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-h1 {
    font-size: 28px;
  }

  .search-btn {
    padding: 0 16px;
    font-size: 0; 
    gap: 0;
  }

  .search-btn svg {
    width: 18px;
    height: 18px;
  }

  .onesearch-btn {
    padding: 11px 16px;
    font-size: 0; 
    gap: 0;
  }

  .onesearch-btn svg {
    width: 16px;
    height: 16px;
  }

}


.wp-caption {
  max-width: 100%;
}

.aligncenter {
  display: block;
  margin: 0 auto;
}

.alignleft {
  float: left;
  margin: 0 24px 16px 0;
}

.alignright {
  float: right;
  margin: 0 0 16px 24px;
}

.sticky {
  
}


.site-nav.scrolled {
  height: 50px;
  box-shadow: 0 2px 24px rgba(0,0,0,0.28);
}



