@font-face {
  font-family: 'Venera';
  src: url('../fonts/Venera-100.otf') format('opentype');
  font-weight: 100;
  font-style: normal;
}

@font-face {
  font-family: 'Venera';
  src: url('../fonts/Venera-300.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Venera';
  src: url('../fonts/Venera-500.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Venera';
  src: url('../fonts/Venera-700.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Venera';
  src: url('../fonts/Venera-900.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
}

body {
  margin: 0;
  padding: 0;
  background-color: #000;
  overflow-x: hidden;
  color: #fff;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.25rem;
}

body.page-about {
  background-color: #fff;
}

@media (hover: hover) and (pointer: fine) {

  body.has-custom-cursor,
  body.has-custom-cursor a,
  body.has-custom-cursor button,
  body.has-custom-cursor .btn,
  body.has-custom-cursor [role="button"] {
    cursor: none;
  }

  .custom-cursor-dot,
  .custom-cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 4000;
    pointer-events: none;
    transform: translate3d(-999px, -999px, 0);
    will-change: transform;
  }

  .custom-cursor-dot {
    width: 28px;
    height: 28px;
    border-radius: 0;
    background: transparent;
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%3E%3Cpath%20d='M4%203l7%2018%202-7%207-2L4%203z'%20fill='%232e6f79'/%3E%3Cpath%20d='M4%203l7%2018%202-7%207-2L4%203z'%20fill='none'%20stroke='%23c19d59'%20stroke-width='1.4'%20stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 28px 28px;
    filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.25));
  }

  .custom-cursor-ring {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 1px solid rgba(193, 157, 89, 0.75);
    background: rgba(193, 157, 89, 0.05);
    backdrop-filter: blur(2px);
    transition: width 0.22s ease, height 0.22s ease, border-color 0.22s ease, background-color 0.22s ease;
  }

  body.cursor-hover .custom-cursor-ring {
    width: 46px;
    height: 46px;
    border-color: rgba(193, 157, 89, 1);
    background: rgba(193, 157, 89, 0.1);
  }

  body.has-custom-cursor,
  body.has-custom-cursor a,
  body.has-custom-cursor button,
  body.has-custom-cursor .btn,
  body.has-custom-cursor [role="button"] {
    cursor: auto !important;
  }

  .custom-cursor-dot,
  .custom-cursor-ring {
    display: none !important;
  }
}

:root {
  --scrollbar-track: rgba(255, 255, 255, 0.08);
  --scrollbar-thumb: rgba(26, 89, 99, 0.55);
  --scrollbar-thumb-hover: rgba(50, 67, 70, 0.85);
}

* {
  scrollbar-width: thin;
  scrollbar-color: var(--scrollbar-thumb) var(--scrollbar-track);
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: var(--scrollbar-track);
}

::-webkit-scrollbar-thumb {
  background: var(--scrollbar-thumb);
  border-radius: 999px;
  border: 2px solid var(--scrollbar-track);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--scrollbar-thumb-hover);
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

body.is-loading {
  overflow: hidden;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.06), transparent 55%), #050505;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
}

.page-loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
}

.page-loader-logo {
  width: 140px;
  height: auto;
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.55));
  transform-origin: center;
  animation: loaderFloat 1.35s ease-in-out infinite;
}

.page-loader-bar {
  width: 180px;
  height: 2px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  position: relative;
  overflow: hidden;
}

.page-loader-bar::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 40%;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  animation: loaderBar 1.05s ease-in-out infinite;
}

@keyframes loaderFloat {

  0%,
  100% {
    transform: translateY(0) scale(1);
    opacity: 0.95;
  }

  50% {
    transform: translateY(-8px) scale(1.01);
    opacity: 1;
  }
}

@keyframes loaderBar {
  0% {
    transform: translateX(-110%);
  }

  100% {
    transform: translateX(260%);
  }
}

.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent);
  color: #fff;
  transform: translateY(0);
  transition: transform 0.35s ease, background-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
  padding: 30px 0;
}

.main-header.is-hidden {
  transform: translateY(-300px);
}

.main-header .navbar {
  padding-top: 0.85rem;
  padding-bottom: 0.45rem;
}

.main-header .container-fluid {
  padding-inline: 3rem;
}

.main-header.home-header .home-header-layout {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  position: relative;
}

.main-header.home-header .home-header-col {
  display: flex;
  align-items: center;
  min-width: 0;
}

.main-header.home-header .home-header-col--menu {
  flex: 0 0 auto;
}

.main-header.home-header .home-header-col--brand {
  flex: 1 1 0;
  justify-content: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.main-header.home-header .home-header-col--actions {
  flex: 0 0 auto;
}

@media (max-width: 1599.98px) {
  .main-header.home-header .home-header-col--brand {
    flex: 0 1 auto;
    justify-content: flex-start;
    position: static;
    left: auto;
    top: auto;
    transform: none;
  }

  .main-header.home-header .home-header-layout {
    gap: 0.75rem;
  }
}

@media (max-width: 576px) {
  .main-header.home-header .logo-image {
    height: 25px;
  }

  .main-header.home-header .btn-contact {
    padding: 0 0.85rem;
    font-size: 0.62rem;
    letter-spacing: 0.14em;
  }
}

.main-header .navbar-nav {
  align-items: center;
  column-gap: 2.5rem;
}

.main-header .nav-link {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0;
  position: relative;
  padding-bottom: 2rem;
}

.main-header .nav-link:hover {
  color: #fff !important;
}

.main-header .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.95);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.28s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.main-header .nav-link.active::after {
  transform: scaleX(1);
}

.main-header .nav-link:hover::after {
  transform: scaleX(1);
}

.main-header .nav-link.dropdown-toggle {
  padding-right: 1.1rem;
}

.main-header .nav-link.dropdown-toggle::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.95);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.28s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.main-header .nav-link.dropdown-toggle.active::before {
  transform: scaleX(1);
}

.main-header .nav-link.dropdown-toggle:hover::before {
  transform: scaleX(1);
}

.main-header .nav-link.dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.45rem;
  vertical-align: 0.15em;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  background: transparent;
  width: 0;
  height: 0;
  position: static;
  transform: none;
}

.main-header .dropdown-menu {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.96);
  padding: 0.6rem 0.5rem;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
  margin-top: 0.25rem;
}

.main-header .dropdown-item {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.6rem 0.85rem;
  border-radius: 10px;
  color: rgba(3, 3, 3, 0.8);
}

.main-header .dropdown-item:hover,
.main-header .dropdown-item:focus {
  background: rgba(26, 89, 99, 0.08);
  color: rgba(26, 89, 99, 1);
}

@media (min-width: 1600px) {
  .main-header .nav-item.dropdown {
    position: relative;
  }

  .main-header .nav-item.dropdown::after {
    content: "";
    position: absolute;
    left: -0.5rem;
    right: -0.5rem;
    top: 100%;
    height: 14px;
  }

  .main-header .nav-item.dropdown:hover>.dropdown-menu {
    display: block;
  }
}

.main-header .navbar-brand {
  display: inline-flex;
  align-items: center;
}

.logo-image {
  height: 45px;
  width: auto;
  object-fit: contain;
}

@media (max-width: 576px) {
  .logo-image {
    height: 44px;
  }
}

.main-header .btn-contact {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.02);
  color: rgba(255, 255, 255, 0.9);
  padding: 0 1.4rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1;
  height: 32px;
  display: inline-flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transform: translateY(0);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background-color 0.22s ease, color 0.22s ease;
}

.main-header .btn-contact::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.22) 45%, rgba(255, 255, 255, 0.55) 50%, rgba(255, 255, 255, 0.22) 55%, transparent 100%);
  transform: translateX(-130%) skewX(-18deg);
  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
  pointer-events: none;
  z-index: 0;
  opacity: 0.75;
}

.main-header .btn-contact:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

.main-header .btn-contact:hover::before {
  transform: translateX(130%) skewX(-18deg);
}

.main-header .btn-contact:focus {
  box-shadow: none;
}

@media (prefers-reduced-motion: reduce) {

  .main-header .btn-contact,
  .main-header .btn-contact::before {
    transition: none;
  }

  .hero-scroll-mouse::after {
    animation: none;
  }
}

.menu-toggle {
  height: 48px;
  width: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 1600px) {
  .main-header .primary-nav {
    display: flex !important;
  }
}

@media (max-width: 1599.98px) {
  .main-header .primary-nav {
    display: none !important;
  }

  .offcanvas-menu {
    width: 80vw;
    min-width: 600px;
    max-width: 100vw;
  }
}

.burger-icon {
  width: 30px;
  height: 21px;
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
}

.burger-icon span {
  display: block;
  height: 3px;
  background-color: #fff;
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease, background-color 0.2s ease;
}

.offcanvas-close,
.btn.is-open .burger-icon span {
  background-color: #fff;
}

.btn.is-open .burger-icon span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.btn.is-open .burger-icon span:nth-child(2) {
  opacity: 0;
}

.btn.is-open .burger-icon span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.main-header.scrolled {
  background: rgba(3, 3, 3, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.6);
}

.main-header.scrolled .navbar {
  padding-top: 0.6rem;
  padding-bottom: 0.35rem;
}

.main-header.scrolled {
  background: rgba(26, 89, 99, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.6);
}

.main-header.scrolled .navbar {
  padding-top: 0.6rem;
  padding-bottom: 0.35rem;
}

/* Offcanvas menu (hamburger) */

.offcanvas-menu {
  background-color: #d5d8cf;
  color: #20201c;
  width: 66.666vw;
  /* roughly two-thirds of the viewport */
  min-width: 600px;
  max-width: 920px;
  border-left: 1px solid rgba(0, 0, 0, 0.08);
  opacity: 0;
  transition: transform 0.25s ease-out, opacity 0.25s ease-out;
}

.offcanvas-menu.show {
  opacity: 1;
}

.offcanvas-menu .offcanvas-header {
  padding: 1.5rem 2.5rem 1rem;
}

.offcanvas-menu .offcanvas-body {
  padding: 1.5rem 2.5rem 2.25rem;
}

.offcanvas-layout {
  height: 100%;
}

.offcanvas-showcase {
  background-color: #1a5963;
  background-image: url("https://images.pexels.com/photos/5527859/pexels-photo-5527859.jpeg?auto=compress&cs=tinysrgb&w=1200");
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 2.5rem 2rem;
  overflow: hidden;
}

.offcanvas-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.12), transparent 60%);
  opacity: 0.6;
}

.offcanvas-showcase-content {
  position: relative;
  color: #f5f5f0;
  max-width: 26rem;
}

.offcanvas-showcase-media {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.25);
  margin-bottom: 1rem;
}

.offcanvas-showcase-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  transform: scale(1) translate(0, 0);
  transition: transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform;
}

.offcanvas-showcase-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 1rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0));
}

.offcanvas-showcase-overlay-inner {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  text-align: center;
  transform: translateY(4px);
  transition: transform 0.35s ease;
}

.offcanvas-showcase-overlay-text {
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.offcanvas-showcase-overlay-btn {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.offcanvas-showcase-media:hover .offcanvas-showcase-image {
  transform: scale(1.08) translate(-2%, -1%);
}

.offcanvas-showcase-media:hover .offcanvas-showcase-overlay-inner {
  transform: translateY(-6px);
}

.offcanvas-showcase-media:hover .offcanvas-showcase-overlay-btn {
  opacity: 1;
  transform: translateY(0);
}

.offcanvas-showcase-mini {
  display: block;
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 1rem;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
  will-change: transform, opacity;
}

.offcanvas-showcase-tag {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.offcanvas-showcase-title {
  font-size: 1rem;
  line-height: 1.5;
}

.offcanvas-showcase-link {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: #f5f5f0;
}

.offcanvas-showcase-link:hover {
  text-decoration: underline;
}

.offcanvas-panel-menu {
  padding-left: 2.5rem;
}

@media (max-width: 767.98px) {
  .offcanvas-menu .offcanvas-header {
    padding: 1.25rem 1.25rem 0.75rem;
  }

  .offcanvas-menu .offcanvas-body {
    padding: 1.25rem 1.25rem 1.5rem;
  }

  .offcanvas-panel-menu {
    padding-left: 1.25rem;
  }
}

.offcanvas-logo-image {
  height: 28px;
  width: auto;
}

.offcanvas-close {
  opacity: 0.8;
}

.offcanvas-close:focus {
  box-shadow: none;
}

.offcanvas-menu .main-menu .nav-link {
  color: #20201c;
  font-size: 1.05rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.35rem 0;
}

.offcanvas-menu .main-menu .nav-link:hover {
  color: #000;
}

.offcanvas-menu .main-menu .offcanvas-accordion-toggle {
  width: 100%;
  text-align: left;
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.offcanvas-menu .main-menu .offcanvas-accordion-toggle::after {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.22s ease;
  opacity: 0.7;
}

.offcanvas-menu .main-menu .offcanvas-accordion-toggle[aria-expanded="true"]::after {
  transform: rotate(-135deg);
  opacity: 1;
}

.offcanvas-menu .offcanvas-accordion-collapse {
  padding-top: 0.35rem;
  padding-bottom: 0.25rem;
}

.offcanvas-menu .offcanvas-submenu {
  padding-left: 1rem;
}

.offcanvas-menu .offcanvas-submenu .nav-link {
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.25rem 0;
  color: rgba(32, 32, 28, 0.78);
}

.offcanvas-menu .offcanvas-submenu .nav-link:hover {
  color: #000;
}

.offcanvas-menu .secondary-menu .nav-link {
  color: rgba(32, 32, 28, 0.8);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.2rem 0;
}

.offcanvas-menu .secondary-menu .nav-link:hover {
  color: #000;
}

/* Staggered fade-up for menu items when offcanvas opens */

@keyframes menuFadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.offcanvas-menu.show .main-menu .nav-link,
.offcanvas-menu.show .secondary-menu .nav-link {
  opacity: 1;
  animation: none;
}

.offcanvas-menu.show .main-menu .nav-item:nth-child(1) .nav-link {
  animation-delay: 0.05s;
}

.offcanvas-menu.show .main-menu .nav-item:nth-child(2) .nav-link {
  animation-delay: 0.1s;
}

.offcanvas-menu.show .main-menu .nav-item:nth-child(3) .nav-link {
  animation-delay: 0.15s;
}

.offcanvas-menu.show .main-menu .nav-item:nth-child(4) .nav-link {
  animation-delay: 0.2s;
}

.offcanvas-menu.show .main-menu .nav-item:nth-child(5) .nav-link {
  animation-delay: 0.25s;
}

.offcanvas-menu.show .secondary-menu .nav-item:nth-child(1) .nav-link {
  animation-delay: 0.3s;
}

.offcanvas-menu.show .secondary-menu .nav-item:nth-child(2) .nav-link {
  animation-delay: 0.35s;
}

.offcanvas-menu.show .secondary-menu .nav-item:nth-child(3) .nav-link {
  animation-delay: 0.4s;
}

@media (max-width: 600px) {
  .offcanvas-menu {
    min-width: 0;
  }
}

@media (max-width: 576px) {
  .offcanvas-menu {
    width: 100vw;
    min-width: 0;
  }
}

.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  padding-top: 5rem;
}

.page-about .about-hero {
  min-height: 50vh;
}

.page-about .about-hero-media {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.page-about .about-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4));
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.18);
  pointer-events: none;
}

.hero-swiper {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
}

.hero-swiper,
.hero-swiper .swiper-wrapper,
.hero-swiper .swiper-slide {
  height: 100%;
}

.hero-swiper .swiper-wrapper {
  display: flex;
}

.hero-swiper .swiper-slide {
  overflow: hidden;
  flex-shrink: 0;
}

.hero-slide-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: translate3d(0, var(--hero-parallax, 0px), 0) scale(1.05);
  will-change: transform, clip-path;
}

.hero-swiper .swiper-slide.is-kenburns .hero-slide-media {
  animation: heroKenBurns 8.5s ease-in-out both;
}

@keyframes heroKenBurns {
  0% {
    transform: translate3d(0, var(--hero-parallax, 0px), 0) scale(1.05);
  }

  100% {
    transform: translate3d(-14px, calc(var(--hero-parallax, 0px) - 6px), 0) scale(1.12);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-swiper .swiper-slide.is-kenburns .hero-slide-media {
    animation: none;
  }

  .hero-slide-media {
    clip-path: inset(0% 0% 0% 0%);
    -webkit-clip-path: inset(0% 0% 0% 0%);
  }
}

.hero-swiper video.hero-slide-media {
  object-fit: cover;
}

.hero-overlay-container {
  position: relative;
  z-index: 3;
  pointer-events: none;
}

.hero-scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  z-index: 3;
  pointer-events: none;
  opacity: 0.95;
}

.hero-scroll-mouse {
  width: 26px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  display: inline-block;
  position: relative;
  background: rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(4px);
}

.hero-scroll-mouse::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 10px;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: rgba(193, 157, 89, 0.95);
  transform: translateX(-50%);
  animation: heroScrollDot 1.35s ease-in-out infinite;
}

@keyframes heroScrollDot {
  0% {
    transform: translateX(-50%) translateY(0);
    opacity: 0.35;
  }

  40% {
    opacity: 1;
  }

  65% {
    transform: translateX(-50%) translateY(14px);
    opacity: 0.65;
  }

  100% {
    transform: translateX(-50%) translateY(0);
    opacity: 0.35;
  }
}

.hero-overlay-container .hero-content {
  pointer-events: auto;
}

.hero-swiper .swiper-button-prev,
.hero-swiper .swiper-button-next {
  z-index: 4;
  width: 72px;
  height: 72px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.hero-swiper .swiper-button-prev::after,
.hero-swiper .swiper-button-next::after {
  font-size: 26px;
  color: #fff;
}

.hero-swiper .swiper-button-prev:hover,
.hero-swiper .swiper-button-next:hover {
  background: rgba(0, 0, 0, 0.5);
  transform: scale(1.03);
}

.hero-swiper .swiper-button-prev {
  left: 1.25rem;
}

.hero-swiper .swiper-button-next {
  right: 1.25rem;
}

.hero-content {
  margin-top: 0;
  margin-bottom: 7rem;
  width: min(80vw, 60rem);
}

@media (max-width: 767.98px) {
  .hero-content {
    margin-bottom: 5rem;
  }
}

.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0.85;
}

.hero-title {
  font-size: clamp(2rem, 2vw, 2.5rem);
  line-height: 1.15;
  letter-spacing: 0.025em;
  margin-bottom: 1.15rem;
  color: #fff;
  font-family: "Venera", "Raleway", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 300;
  text-transform: uppercase;
}

@media (max-width: 767.98px) {
  .hero-title {
    font-size: clamp(1.85rem, 5.5vw, 4.75rem);
  }
}

.hero-subtitle {
  font-size: 1rem;
  max-width: 28rem;
  margin-left: auto;
}

.btn-hero-cta {
  border-radius: 999px;
  padding: 0.5rem 1.8rem;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

@media (max-width: 992px) {
  .hero {
    text-align: center;
  }

  .hero-content {
    margin-bottom: 2.5rem;
    width: min(96vw, 30rem);
  }
}

.content-section {
  background-color: #050505;
}

.content-section h2 {
  font-size: 1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.content-text {
  max-width: 42rem;
}

.about-vella {
  background: rgb(228, 239, 242);
  padding: 4rem 0;
}

@media (max-width: 767.98px) {
  .about-vella {
    padding: 1.375rem 0;
  }
}

.about-vella-title {
  font-family: "Venera", "Raleway", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.1;
  font-size: clamp(2.25rem, 2.75vw, 2.75rem);
  color: rgba(26, 89, 99, 0.95);
  overflow-wrap: normal;
  word-break: keep-all;
  hyphens: manual;
}

@supports (-webkit-text-stroke: 1px rgba(26, 89, 99, 0.6)) {
  .about-vella-title {
    color: rgba(26, 89, 99, 0.75);
    font-weight: 500;

  }
}

.about-vella-text {
  /*max-width: 28rem;*/
  max-width: 100%;
}

.about-vella-paragraph {
  color: rgba(3, 3, 3, 1);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1.35rem;
}

#vella-foundation .foundation-points-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
  margin: 0 0 1.6rem;
}

#vella-foundation .foundation-point-card {
  position: relative;
  border-radius: 18px;
  padding: 1.25rem 1.25rem 1.35rem;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(26, 89, 99, 0.14);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

#vella-foundation .foundation-point-card::before {
  content: "";
  position: absolute;
  left: 1.25rem;
  top: 1.15rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: rgba(26, 89, 99, 0.95);
  box-shadow: 0 0 0 3px rgba(26, 89, 99, 0.14);
}

#vella-foundation .foundation-point-card .about-vella-paragraph {
  margin-bottom: 0;
  padding-left: 1.1rem;
}

@media (max-width: 991px) {
  #vella-foundation .foundation-points-grid {
    grid-template-columns: 1fr;
  }
}

#vella-foundation #key-initiatives {
  padding: 3.5rem 0 3rem;
}

@media (max-width: 767.98px) {
  #vella-foundation #key-initiatives {
    padding: 1.375rem 0 1.5rem;
  }
}

#vella-foundation .initiatives-title {
  display: inline-block;
  font-family: "Venera", "Raleway", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(26, 89, 99, 0.95);
  font-size: 1.1rem;
  margin-bottom: 2.25rem;
}

#vella-foundation .initiative-card {
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.14);
  height: 100%;
  display: flex;
  flex-direction: column;
}

#vella-foundation .initiative-media {
  position: relative;
  height: 400px;
  overflow: hidden;
}

#vella-foundation .initiative-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

#vella-foundation .initiative-body {
  padding: 1.25rem 1.2rem 1.35rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.05rem;
  flex: 1;
}

#vella-foundation .initiative-name {
  color: rgba(3, 3, 3, 0.92);
  font-size: 0.95rem;
  line-height: 1.35;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

#vella-foundation .initiative-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  align-self: center;
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  border: 1px solid rgba(26, 89, 99, 0.35);
  color: rgba(26, 89, 99, 0.95);
  text-decoration: none;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.9);
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

#vella-foundation .initiative-cta:hover {
  transform: translateY(-1px);
  background: rgba(26, 89, 99, 0.06);
  border-color: rgba(26, 89, 99, 0.55);
}

@media (max-width: 575px) {
  #vella-foundation .initiative-media {
    height: 210px;
  }
}

#vella-foundation #impact-together {
  background: rgb(228, 239, 242);
  padding: 3.5rem 0 4.75rem;
}

@media (max-width: 767.98px) {
  #vella-foundation #impact-together {
    padding: 1.375rem 0 1.625rem;
  }
}

#vella-foundation .impact-title {
  font-family: "Venera", "Raleway", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(26, 89, 99, 0.95);
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
}

#vella-foundation .impact-copy {
  max-width: 56rem;
  margin: 0 auto;
  color: rgba(3, 3, 3, 0.62);
  font-size: 0.92rem;
  line-height: 1.8;
}

#contact-us-page #contact-details {
  background: #fff;
  padding: 2.75rem 0;
}

#contact-us-page .contact-split {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.14);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

#contact-us-page .contact-panel {
  height: 100%;
  min-height: 380px;
  background: rgba(66, 86, 63, 0.98);
  position: relative;
}

#contact-us-page .contact-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/Contact-Us-1920x600-1.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  pointer-events: none;
}

#contact-us-page .contact-panel-inner {
  position: relative;
  z-index: 1;
  padding: 2.25rem 2.25rem 2.1rem;
  color: rgba(255, 255, 255, 0.92);
}

#contact-us-page .contact-panel-label {
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  opacity: 0.82;
  margin-bottom: 0.4rem;
}

#contact-us-page .contact-panel-line {
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 0.25rem;
}

#contact-us-page .contact-panel-link {
  display: inline-block;
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  font-size: 0.95rem;
  line-height: 1.65;
}

#contact-us-page .contact-panel-link:hover {
  text-decoration: underline;
}

#contact-us-page .contact-panel-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.18);
  margin: 1.4rem 0;
}

#contact-us-page .contact-social {
  margin-top: 0.75rem;
}

#contact-us-page .contact-social .footer-social-link {
  border-color: rgba(255, 255, 255, 0.35);
  color: rgba(255, 255, 255, 0.92);
}

#contact-us-page .contact-social .footer-social-link:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.6);
}

#contact-us-page .contact-map {
  height: 100%;
  min-height: 380px;
  background: rgb(240, 240, 240);
}

#contact-us-page .contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

#contact-us-page #contact-form {
  background: rgb(228, 239, 242);
  padding: 2.75rem 0 4.75rem;
}

#contact-us-page .contact-form-card {
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.12);
  padding: 3rem 2.5rem 2.75rem;
}

#contact-us-page .contact-form-title {
  font-family: "Venera", "Raleway", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: rgba(26, 89, 99, 0.95);
  font-size: clamp(1.75rem, 2.2vw, 2.35rem);
  margin-bottom: 2.25rem;
}

#contact-us-page .contact-label {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(3, 3, 3, 0.72);
  margin-bottom: 0.55rem;
}

#contact-us-page .contact-required {
  color: rgba(193, 157, 89, 0.95);
}

#contact-us-page .contact-input {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.92);
  padding: 0.85rem 0.9rem;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

#contact-us-page .contact-input:focus {
  border-color: rgba(26, 89, 99, 0.55);
  box-shadow: 0 0 0 4px rgba(26, 89, 99, 0.12);
}

#contact-us-page .contact-textarea {
  resize: vertical;
}

#contact-us-page .contact-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(26, 89, 99, 0.35);
  background: rgba(255, 255, 255, 0.75);
  color: rgba(26, 89, 99, 0.95);
  padding: 0.75rem 2rem;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

#contact-us-page .contact-submit:hover {
  transform: translateY(-1px);
  background: rgba(26, 89, 99, 0.06);
  border-color: rgba(26, 89, 99, 0.55);
}

@media (max-width: 991px) {

  #contact-us-page .contact-panel,
  #contact-us-page .contact-map {
    min-height: 320px;
  }

  #contact-us-page .contact-form-card {
    padding: 2.5rem 1.5rem 2.25rem;
  }
}

.leisure-portfolio {
  background: rgb(228, 239, 242);
  padding: 3rem 0 5rem;
}

@media (max-width: 767.98px) {
  .leisure-portfolio {
    padding: 1.375rem 0 1.625rem;
  }
}

.leisure-portfolio-title {
  font-family: "Venera", "Raleway", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.1;
  font-size: clamp(2rem, 2.5vw, 2.8rem);
  color: rgba(26, 89, 99, 0.95);
}

@supports (-webkit-text-stroke: 1px rgba(26, 89, 99, 0.6)) {
  .leisure-portfolio-title {
    color: rgba(26, 89, 99, 0.75);
    font-weight: 500;
  }
}

.leisure-portfolio-subtitle {
  color: rgba(3, 3, 3, 0.75);
  font-size: 1.05rem;
  max-width: 46rem;
  margin: 0 auto;
}

.leisure-masonry {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem 1.35rem;
  perspective: 1200px;
}

@media (max-width: 991px) {
  .leisure-masonry {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .leisure-portfolio {
    padding: 2.125rem 0 2.5rem;
  }
}

.leisure-card {
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(6px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
  display: flex;
  flex-direction: column;
  transform-style: preserve-3d;
  will-change: transform, opacity;
}

.leisure-card-media {
  position: relative;
  display: block;
  width: 100%;
  height: clamp(450px, 550vw, 650px);
  overflow: hidden;
}

@media (max-width: 767px) {
  .leisure-card-media {
    height: clamp(420px, 95vw, 680px);
  }
}

.leisure-card-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.01);
  transition: transform 0.55s ease;
  will-change: transform;
}

.leisure-card:hover .leisure-card-image,
.leisure-card:focus-visible .leisure-card-image {
  transform: scale(1.06);
}

.leisure-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 1.25rem 1.15rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.12));
  opacity: 0;
  transition: opacity 0.25s ease;
  will-change: opacity;
  pointer-events: none;
}

.leisure-card:hover .leisure-card-overlay,
.leisure-card:focus-visible .leisure-card-overlay {
  opacity: 1;
}

.leisure-card-overlay-title {
  font-family: "Venera", "Raleway", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.15;
  font-size: clamp(1.25rem, 1.6vw, 1.7rem);
  margin: 0;
  color: rgba(255, 255, 255, 0.95);
  transform: translateY(12px);
  transition: transform 0.35s ease;
  will-change: transform;
}

.leisure-card:hover .leisure-card-overlay-title,
.leisure-card:focus-visible .leisure-card-overlay-title {
  transform: translateY(-6px);
}

.leisure-card-overlay-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  padding-bottom: 0.15rem;
  margin-top: 0.75rem;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.35s ease;
  will-change: opacity, transform;
}

.leisure-card-overlay-link::after {
  content: "→";
  display: inline-block;
  transform: translateX(0);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.leisure-card:hover .leisure-card-overlay-link::after,
.leisure-card:focus-visible .leisure-card-overlay-link::after {
  transform: translateX(6px);
}

.leisure-card:hover .leisure-card-overlay-link,
.leisure-card:focus-visible .leisure-card-overlay-link {
  opacity: 1;
  transform: translateY(0);
}

.leisure-card-meta {
  padding: 3.5rem 1.15rem 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.leisure-card-meta-title {
  font-family: "Venera", "Raleway", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.15;
  color: rgba(26, 89, 99, 0.95);
  font-size: 1.1rem;
  margin: 0 0 0.65rem;
}

.leisure-card-meta-text {
  margin: 0 0 0.85rem;
  color: rgba(3, 3, 3, 0.72);
  font-size: 0.98rem;
  line-height: 1.65;
}

.leisure-card-meta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(26, 89, 99, 0.95);
  border-bottom: 1px solid rgba(26, 89, 99, 0.45);
  text-decoration: none;
  padding-bottom: 0.15rem;
}

.about-vella-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
  padding: 0.85rem 1.85rem;
  border-radius: 999px;
  border: 1px solid rgba(193, 157, 89, 0.85);
  background: transparent;
  text-decoration: none;
  color: rgba(26, 89, 99, 0.95);
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  line-height: 1;
  transition: transform 0.22s ease, background-color 0.22s ease, border-color 0.22s ease, color 0.22s ease, box-shadow 0.22s ease;
}

.about-vella-dot {
  display: none;
}

.about-vella-arrow {
  font-size: 1rem;
  letter-spacing: 0;
  transform: translateX(0);
  transition: transform 0.22s ease;
  color: rgba(26, 89, 99, 0.95);
}

.about-vella-cta:hover {
  color: rgba(26, 89, 99, 1);
  border-color: rgba(193, 157, 89, 1);
  background: rgba(193, 157, 89, 0.08);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
  transform: translateY(-1px);
}

.about-vella-cta:hover .about-vella-arrow {
  transform: translateX(6px);
}

.about-vella-media {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.35);
  height: clamp(260px, 32vw, 380px);
}

.about-vella-image {
  position: absolute;
  left: 0;
  top: -72px;
  width: 100%;
  height: calc(100% + 144px);
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  will-change: transform;
}

@media (max-width: 992px) {
  .about-vella {
    padding: 2.125rem 0;
  }

  .about-vella-text {
    max-width: 100%;
  }
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
  color: #fff;
}

/* Sectors Section */
.sectors-section {
  padding: 4rem 0;
  background: rgb(255, 255, 255);
}

@media (max-width: 767.98px) {
  .sectors-section {
    padding: 1.375rem 0;
  }
}

.sector-title {
  font-family: "Venera", "Raleway", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(26, 89, 99, 0.95);
  font-size: clamp(2rem, 2.5vw, 2.8rem);
  line-height: 1.1;
}

@supports (-webkit-text-stroke: 1px rgba(26, 89, 99, 0.6)) {
  .sector-title {
    color: rgba(26, 89, 99, 0.75);
    font-weight: 500;
  }
}

.sector-subtitle {
  color: rgba(3, 3, 3, 0.75);
  font-size: 1.25rem;
  margin-top: 1rem;
}

.sector-item {
  margin-bottom: 2rem;
}

.sector-card {
  position: relative;
}

.sector-image-wrapper {
  position: relative;
  overflow: hidden;
  /* aspect-ratio: 3/4; optional constraint, but images seem tall */
  width: 100%;
  height: 600px;
  /* Fixed height for consistency */
}

.sector-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
  display: block;
}

.sector-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
  pointer-events: none;
  /* Let clicks pass through if needed, but wrapper is not a link usually */
}

.sector-overlay-title {
  color: #fff;
  font-family: "Venera", "Raleway", sans-serif;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 1.5rem;
  transform: translateY(20px);
  transition: transform 0.4s ease;
  text-align: center;
  padding: 0 1rem;
}

.sector-image-wrapper:hover .sector-image {
  transform: scale(1.1);
}

.sector-image-wrapper:hover .sector-overlay {
  opacity: 1;
}

.sector-image-wrapper:hover .sector-overlay-title {
  transform: translateY(0);
}

.sector-name {
  font-family: "Venera", "Raleway", sans-serif;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(26, 89, 99, 0.95);
  font-size: 1.1rem;
}

.btn-sector-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.75rem 1.85rem;
  border-radius: 999px;
  border: 1px solid rgba(193, 157, 89, 0.85);
  background: transparent;
  text-decoration: none;
  color: rgba(26, 89, 99, 0.95);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  line-height: 1;
  transition: transform 0.22s ease, background-color 0.22s ease, border-color 0.22s ease, color 0.22s ease, box-shadow 0.22s ease;
}

.btn-sector-cta .sector-dot {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: rgba(26, 89, 99, 0.95);
  transition: background-color 0.22s ease;
}

.btn-sector-cta:hover {
  color: rgba(26, 89, 99, 1);
  border-color: rgba(193, 157, 89, 1);
  background: rgba(193, 157, 89, 0.08);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
  transform: translateY(-1px);
}

.btn-sector-cta:hover .sector-dot {
  background-color: rgba(26, 89, 99, 1);
}

.sector-arrow {
  font-size: 1rem;
  letter-spacing: 0;
  transition: transform 0.22s ease;
}

.btn-sector-cta:hover .sector-arrow {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .sector-image-wrapper {
    height: 300px;
  }
}

.mt-sector {
  margin-top: 2.5rem !important;
}

.awards-section {
  background: rgba(228, 239, 242, 1);
  padding: 3rem 0 5rem;
}

@media (max-width: 767.98px) {
  .awards-section {
    padding: 1.375rem 0 1.625rem;
  }
}

.awards-title {
  font-family: "Venera", "Raleway", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(26, 89, 99, 0.95);
  font-size: clamp(2rem, 2.4vw, 2.7rem);
  line-height: 1.1;
}

@supports (-webkit-text-stroke: 1px rgba(26, 89, 99, 0.6)) {
  .awards-title {
    color: rgba(26, 89, 99, 0.75);
    font-weight: 500;
  }
}

.awards-text {
  color: rgba(3, 3, 3, 0.78);
  font-size: 1.15rem;
  line-height: 1.75;
}

.awards-page {
  background: rgba(228, 239, 242, 1);
  padding: 3rem 0 5rem;
}

@media (max-width: 767.98px) {
  .awards-page {
    padding: 1.375rem 0 1.625rem;
  }
}

.awards-page-title {
  font-family: "Venera", "Raleway", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(26, 89, 99, 0.95);
  font-size: clamp(2rem, 2.0vw, 2.2rem);
  line-height: 1.1;
}

@supports (-webkit-text-stroke: 1px rgba(26, 89, 99, 0.6)) {
  .awards-page-title {
    color: rgba(26, 89, 99, 0.75);
    font-weight: 500;
  }
}

.awards-page-intro {
  color: rgba(3, 3, 3, 0.78);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
}

.awards-page-group {
  margin-top: 4.5rem;
}

.awards-page-group-title {
  font-family: "Venera", "Raleway", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(26, 89, 99, 0.95);
  font-size: 1.5rem;
  margin: 0 0 2.1rem;
}

.awards-page-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.35rem;
  align-items: stretch;
}

@media (max-width: 991.98px) {
  .awards-page {
    padding: 2.25rem 0 3rem;
  }

  .awards-page-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575.98px) {
  .awards-page-grid {
    grid-template-columns: 1fr;
  }
}

.awards-page .award-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 12px;
  padding: 2.15rem 1.5rem 1.6rem;
  text-align: center;
  height: 100%;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.awards-page .award-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.1);
}

.awards-page .award-media {
  width: 100%;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.35rem;
}

.awards-page .award-media img {
  width: auto;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  display: block;
}

.awards-page .award-media.award-media--logo {
  height: 180px;
}

.awards-page .award-title {
  font-family: "Venera", "Raleway", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(3, 3, 3, 0.9);
  font-size: 0.95rem;
  line-height: 1.25;
  margin-bottom: 0.75rem;
}

.awards-page .award-subtitle {
  color: rgba(3, 3, 3, 0.62);
  font-size: 0.82rem;
  line-height: 1.55;
}

.awards-page .award-description {
  color: rgba(3, 3, 3, 0.62);
  font-size: 0.82rem;
  line-height: 1.55;
  margin-top: 0.75rem;
}

.awards-section.awards-slider {
  background: rgba(228, 239, 242, 1);
}

.awards-section.awards-slider .awards-header {
  position: relative;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.awards-section.awards-slider .awards-header-nav {
  position: absolute;
  right: 0;
  top: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.awards-section.awards-slider .awards-readall {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  margin-top: 0.35rem;
  padding: 0.65rem 1.7rem;
  border-radius: 999px;
  border: 1px solid rgba(193, 157, 89, 0.85);
  background: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  color: rgba(26, 89, 99, 0.95);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  line-height: 1;
  transition: transform 0.22s ease, background-color 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.awards-section.awards-slider .awards-readall-arrow {
  font-size: 1rem;
  letter-spacing: 0;
  transition: transform 0.22s ease;
}

.awards-section.awards-slider .awards-readall:hover {
  background: rgba(255, 255, 255, 0.6);
  border-color: rgba(193, 157, 89, 1);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.12);
  transform: translateY(-1px);
}

.awards-section.awards-slider .awards-readall:hover .awards-readall-arrow {
  transform: translateX(4px);
}

.awards-section.awards-slider .awards-swiper-wrap {
  position: relative;
  margin-top: 3.25rem;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  padding-right: 0;
}

.awards-section.awards-slider .awards-swiper {
  overflow: hidden;
}

.awards-section.awards-slider .award-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 12px;
  padding: 2.15rem 1.5rem 1.6rem;
  text-align: center;
  height: 100%;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.awards-section.awards-slider .award-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.1);
}

.awards-section.awards-slider .award-media {
  width: 100%;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.35rem;
}

.awards-section.awards-slider .award-media img {
  width: auto;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  display: block;
}

.awards-section.awards-slider .award-title {
  font-family: "Venera", "Raleway", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(3, 3, 3, 0.9);
  font-size: 0.95rem;
  line-height: 1.25;
  margin-bottom: 0.75rem;
}

.awards-section.awards-slider .award-subtitle {
  color: rgba(3, 3, 3, 0.62);
  font-size: 0.82rem;
  line-height: 1.55;
}

.awards-section.awards-slider .awards-swiper-next,
.awards-section.awards-slider .awards-swiper-prev {
  position: static;
  margin: 0;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12);
  color: rgba(26, 89, 99, 0.92);
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.awards-section.awards-slider .awards-swiper-next:hover,
.awards-section.awards-slider .awards-swiper-prev:hover {
  transform: translateY(-1px);
  background: #fff;
  border-color: rgba(26, 89, 99, 0.35);
}

.awards-section.awards-slider .awards-swiper-next::after,
.awards-section.awards-slider .awards-swiper-prev::after {
  font-size: 14px;
  font-weight: 700;
}

.awards-section.awards-slider .awards-swiper-next.swiper-button-disabled,
.awards-section.awards-slider .awards-swiper-prev.swiper-button-disabled {
  opacity: 0.35;
  transform: none;
  cursor: not-allowed;
}

@media (max-width: 991.98px) {
  .awards-section.awards-slider .awards-header-nav {
    position: static;
    justify-content: center;
    margin-top: 1.25rem;
  }
}

.milestones-section {
  padding: 7rem 0 7.25rem;
  background: #fff;
  overflow: hidden;
  min-height: 100vh;
}

@media (max-width: 767.98px) {
  .milestones-section {
    padding: 2.75rem 0 3.25rem;
    min-height: auto;
  }
}

.values-section {
  padding: 6.5rem 0 6.75rem;
  background: #fff;
  color: rgba(3, 3, 3, 0.9);
  text-align: center;
}

.values-title {
  font-family: "Venera", "Raleway", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(26, 89, 99, 0.95);
  font-size: clamp(1.9rem, 2.1vw, 2.4rem);
  line-height: 1.1;
  margin-bottom: 2.5rem;
}

@supports (-webkit-text-stroke: 1px rgba(26, 89, 99, 0.6)) {
  .values-title {
    color: rgba(26, 89, 99, 0.75);
    font-weight: 500;
  }
}

.values-row {
  align-items: stretch;
}

.values-col {
  position: relative;
}

.values-item {
  text-align: center;
  padding: 1.25rem 2rem;
}

.values-icon {
  width: 88px;
  height: 88px;
  margin: 0 auto 1rem;
  color: rgba(193, 157, 89, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.values-icon img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.values-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.values-heading {
  font-size: 1.5rem;
  color: rgba(26, 89, 99, 0.98);
  font-weight: 600;
}

.values-text {
  font-size: 0.95rem;
  color: rgba(3, 3, 3, 0.68);
  line-height: 1.6;
}

@media (min-width: 768px) {
  .values-col:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 18px;
    bottom: 18px;
    right: 0;
    width: 1px;
    background: rgba(26, 89, 99, 0.35);
  }
}

@media (max-width: 767.98px) {
  .values-item {
    padding: 1.5rem 1rem;
  }
}

.milestones-title {
  font-family: "Venera", "Raleway", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(26, 89, 99, 0.95);
  font-size: clamp(2rem, 2.5vw, 2.8rem);
  line-height: 1.1;
}

@supports (-webkit-text-stroke: 1px rgba(26, 89, 99, 0.6)) {
  .milestones-title {
    color: rgba(26, 89, 99, 0.75);
    font-weight: 500;
  }
}

.milestones-subtitle {
  color: rgba(3, 3, 3, 0.72);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 34rem;
}

.milestones-nav-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.milestones-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1.1rem;
  flex-wrap: nowrap;
  overflow-x: scroll;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  flex: 1 1 auto;
  min-width: 0;
}

.milestones-year {
  position: relative;
  border: 0;
  background: transparent;
  padding: 0;
  color: rgba(3, 3, 3, 0.45);
  font-size: clamp(1.25rem, 1.7vw, 1.75rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: color 0.22s ease;
  white-space: nowrap;
  flex: 0 0 auto;
}

.milestones-year:hover {
  color: rgba(26, 89, 99, 0.95);
}

.milestones-year.is-active {
  color: rgba(26, 89, 99, 1);
}

.milestones-year.is-active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -0.95rem;
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 9px solid rgba(26, 89, 99, 0.95);
  transform: translateX(-50%);
}

.milestones-sep {
  color: rgba(0, 0, 0, 0.2);
  flex: 0 0 auto;
}

.milestones-arrows {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-left: 1rem;
  border-left: 1px solid rgba(0, 0, 0, 0.08);
  flex: 0 0 auto;
}

.milestones-arrow {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(26, 89, 99, 0.28);
  background: rgba(26, 89, 99, 0.04);
  color: rgba(26, 89, 99, 0.95);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.milestones-arrow:hover {
  transform: translateY(-1px);
  background: rgba(26, 89, 99, 0.08);
  border-color: rgba(26, 89, 99, 0.45);
}

.milestones-arrow:disabled {
  opacity: 0.35;
  transform: none;
}

.milestones-track-wrap {
  margin-top: 2.75rem;
}

.milestones-track-fluid {
  padding-left: 0;
  padding-right: 0;
}

.milestones-track {
  display: flex;
  align-items: stretch;
  will-change: transform;
  gap: 16px;
}

.milestone-panel {
  flex: 0 0 100vw;
  padding: 0 clamp(1rem, 4vw, 3rem);
}

.milestone-card {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: clamp(1.25rem, 2.5vw, 2.75rem);
  align-items: center;
  max-width: 1320px;
  margin: 0 auto;
  border-radius: 28px;
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.12);
  padding: clamp(1rem, 2.2vw, 1.75rem);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.milestone-media {
  border-radius: 22px;
  overflow: hidden;
  height: clamp(260px, 26vw, 390px);
}

.milestone-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.milestone-content {
  border-radius: 22px;
  background: rgba(248, 250, 251, 1);
  padding: clamp(1rem, 2vw, 1.6rem);
}

.milestone-kicker {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(3, 3, 3, 0.55);
  margin-bottom: 0.75rem;
}

.milestone-heading {
  font-family: "Venera", "Raleway", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 300;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(26, 89, 99, 0.95);
  font-size: clamp(1.15rem, 1.6vw, 1.45rem);
  line-height: 1.25;
  margin-bottom: 0.9rem;
}

.milestone-text {
  color: rgba(3, 3, 3, 0.72);
  font-size: 0.98rem;
  line-height: 1.75;
}

.milestones-section.is-ready .milestone-card {
  opacity: 0;
  transform: translateY(22px);
}

.milestones-section.is-ready .milestone-panel.is-revealed .milestone-card {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 992px) {
  .milestones-track-wrap {
    overflow: hidden;
  }

  .milestone-panel {
    flex: 0 0 auto;
    width: 100%;
    padding: 0;
  }

  .milestone-card {
    max-width: none;
    margin: 0;
  }
}

@media (max-width: 991.98px) {
  .milestones-section {
    padding: 4.5rem 0 4.75rem;
  }

  .milestones-nav {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .milestones-arrows {
    flex-direction: row;
    margin-left: 0;
    border-left: 0;
    padding-left: 0;
  }

  .milestones-track-wrap {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .milestones-track {
    gap: 14px;
  }

  .milestone-panel {
    scroll-snap-align: start;
    flex: 0 0 92vw;
    padding: 0 1rem;
  }

  .milestone-card {
    grid-template-columns: 1fr;
  }

  .milestone-media {
    height: clamp(220px, 56vw, 320px);
  }
}

.team-section {
  padding: .5rem 0 .25rem;
  background: #fff;
}

@media (max-width: 767.98px) {
  .team-section {
    padding: 2.75rem 0 3.25rem;
  }
}

.team-title {
  font-family: "Venera", "Raleway", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(26, 89, 99, 0.95);
  font-size: clamp(2rem, 2.5vw, 2.8rem);
  line-height: 1.1;
}

@supports (-webkit-text-stroke: 1px rgba(26, 89, 99, 0.6)) {
  .team-title {
    color: rgba(26, 89, 99, 0.75);
    font-weight: 500;
  }
}

.team-subtitle {
  color: rgba(3, 3, 3, 0.7);
  font-size: 1rem;
  line-height: 1.75;
  margin-top: 1rem;
}

.team-header {
  position: relative;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.team-header-nav {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
  z-index: 5;
}

.team-header-nav .team-swiper-nav {
  pointer-events: auto;
}

.team-swiper-wrap {
  position: relative;
  margin-top: 3.25rem;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 112px;
}

.team-swiper {
  overflow: hidden;
  padding: 0 0 2.25rem;
}

.team-section .swiper-slide {
  height: auto;
}

.team-section .team-swiper .swiper-wrapper {
  align-items: flex-end;
}

@media (min-width: 1200px) {
  .team-section .team-swiper.team-swiper--rotate5 .swiper-slide {
    flex: 0 0 calc((100% - (26px * 4)) / 5);
    max-width: calc((100% - (26px * 4)) / 5);
    margin-right: 26px;
  }

  .team-section .team-swiper.team-swiper--rotate5 .swiper-slide:last-child {
    margin-right: 0;
  }

  .team-section .team-swiper.team-swiper--rotate5 .team-swiper-pagination {
    display: none;
  }
}

.team-section .team-swiper .swiper-slide {
  display: flex;
  height: auto;
}

.team-section .team-swiper .swiper-slide .team-card {
  width: 100%;
}

.team-section .team-swiper .team-image-wrap {
  height: 340px;
  transition: height 0.35s ease;
}

.team-section .team-swiper .swiper-slide.team-pos--far .team-image-wrap {
  height: 340px;
}

.team-section .team-swiper .swiper-slide.team-pos--near .team-image-wrap {
  height: 400px;
}

.team-section .team-swiper .swiper-slide.team-pos--active .team-image-wrap {
  height: 460px;
}

@media (min-width: 1200px) {
  .team-section .team-swiper .swiper-slide.team-pos--far {
    transform: translateY(-34px);
  }

  .team-section .team-swiper .swiper-slide.team-pos--near {
    transform: translateY(-18px);
  }

  .team-section .team-swiper .swiper-slide.team-pos--active {
    transform: translateY(0);
  }
}

.team-card {
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.08);
  border-radius: 0;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
}

.team-image-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 460px;
  border-radius: 0;
  background: #0b0b0b;
}

.team-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.01);
  transition: transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.team-image--placeholder {
  background: linear-gradient(135deg, rgba(26, 89, 99, 0.65), rgba(193, 157, 89, 0.55));
}

.team-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 2.1rem 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.0) 100%);
  transform: none;
  transition: none;
}

.team-overlay::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 88px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.0) 100%);
  z-index: 0;
  transition: height 0.35s ease, background-color 0.35s ease;
}

.team-overlay>* {
  position: relative;
  z-index: 1;
  transform: translateY(0);
  transition: transform 0.35s ease;
}

.team-overlay .team-name {
  font-family: "Venera", "Raleway", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.96);
  font-size: 0.75rem;
  line-height: 1.2;
}

.team-overlay .team-role {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  margin-top: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: opacity 0.25s ease, max-height 0.25s ease, margin-top 0.25s ease;
}

.team-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.12);
}

.team-card:hover .team-image {
  transform: scale(1.08);
}

.team-card:hover .team-overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.0) 100%);
}

.team-card:hover .team-overlay::before {
  height: 170px;
  background: rgba(0, 0, 0, 0.78);
}

.team-card:hover .team-overlay>* {
  transform: translateY(-8px);
}

.team-card:hover .team-overlay .team-role {
  margin-top: 0.4rem;
  max-height: 44px;
  opacity: 1;
}

.team-section .team-swiper-nav {
  position: static;
  transform: none;
  margin: 0;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12);
  color: rgba(26, 89, 99, 0.92);
  z-index: 1;
}

.team-section .team-swiper-nav::after {
  font-size: 13px;
  font-weight: 700;
}

.team-section .team-swiper-nav:hover {
  background: #fff;
  border-color: rgba(26, 89, 99, 0.35);
}

.team-section .team-swiper-nav.swiper-button-disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.team-section .team-swiper-pagination {
  position: static;
  margin-top: 1.35rem;
}

.team-section .swiper-pagination-bullet {
  width: 7px;
  height: 7px;
}

.team-section .swiper-pagination-bullet-active {
  background: rgba(26, 89, 99, 0.75);
  transform: scale(1.12);
}

.team-bio {
  padding: 1rem 1.25rem 1.35rem;
  text-align: center;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-bio--empty {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-bio-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.25rem;
  border-radius: 999px;
  border: 1px solid rgba(26, 89, 99, 0.35);
  background: rgba(255, 255, 255, 0.95);
  color: rgba(26, 89, 99, 0.95);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.team-bio-btn:hover {
  transform: translateY(-1px);
  background: rgba(26, 89, 99, 0.06);
  border-color: rgba(26, 89, 99, 0.55);
}

.team-bio-details {
  padding: 0.75rem 1.25rem;
  border-radius: 12px;
  border: 1px solid rgba(26, 89, 99, 0.15);
  background: rgba(26, 89, 99, 0.03);
  color: rgba(3, 3, 3, 0.75);
  font-size: 0.88rem;
  line-height: 1.6;
  text-align: left;
}

.team-bio-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
}

.team-bio-modal.is-open {
  display: block;
}

.team-bio-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.team-bio-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(92vw, 720px);
  max-height: min(78vh, 680px);
  overflow: auto;
  margin: 8vh auto 0;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 1.6rem 1.6rem 1.5rem;
}

.team-bio-modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.9);
  color: rgba(3, 3, 3, 0.85);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.team-bio-modal-title {
  font-family: "Venera", "Raleway", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(26, 89, 99, 0.95);
  font-size: 1.35rem;
  margin: 0 0 0.35rem;
  padding-right: 3rem;
}

.team-bio-modal-role {
  color: rgba(3, 3, 3, 0.6);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.team-bio-modal-body {
  color: rgba(3, 3, 3, 0.78);
  font-size: 0.98rem;
  line-height: 1.7;
  white-space: pre-wrap;
}

.has-modal {
  overflow: hidden;
}

@media (max-width: 991.98px) {
  .team-header-nav {
    top: 50%;
    transform: translateY(-50%);
  }

  .team-swiper-wrap {
    padding: 0 88px;
  }

  .team-image-wrap {
    height: 380px;
  }
}

@media (max-width: 575.98px) {
  .team-swiper-wrap {
    padding: 0 44px;
  }

  .team-swiper {
    padding: 0 0 1.9rem;
  }

  .team-image-wrap {
    height: 320px;
  }
}

.site-footer {
  background: rgba(228, 239, 242, 1);
  padding: 5.25rem 0 2.5rem;
  color: rgba(3, 3, 3, 0.9);
  position: relative;
  margin-top: -3.5rem;
  overflow-x: hidden;
}

.footer-divider {
  --footer-divider-container-max: 1320px;
  --footer-divider-container-pad: 0rem;
  --footer-divider-container-start: max(var(--footer-divider-container-pad),
      calc((100vw - var(--footer-divider-container-max)) / 2 + var(--footer-divider-container-pad)));
  --footer-divider-gap: 0rem;
  --footer-divider-icon-w: 400px;
  --footer-divider-icon-x: 0px;
  --footer-divider-icon-y: -8px;
  --footer-divider-line-y: 0px;
  --footer-divider-left-line-x: 0px;
  --footer-divider-right-line-x: 0px;

  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: 0;
  margin-bottom: 2.25rem;
  padding: 0;
  overflow: hidden;
}

.footer-divider-line {
  position: absolute;
  top: calc(50% + var(--footer-divider-line-y));
  transform: translateY(-50%);
  height: 1px;
  background: rgba(0, 0, 0, 0.12);
}

.footer-divider-line--left {
  left: 0;
  top: 60%;
  width: max(0px, calc(var(--footer-divider-container-start) - var(--footer-divider-gap)));
  transform: translateY(-50%) translateX(var(--footer-divider-left-line-x));
  height: 2px;
}

.footer-divider-line--right {
  left: calc(var(--footer-divider-container-start) + var(--footer-divider-icon-w) + var(--footer-divider-gap));
  right: 0;
  transform: translateY(-50%) translateX(var(--footer-divider-right-line-x));
  height: 2px;
}

.footer-divider-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: var(--footer-divider-container-start);
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  position: relative;
  z-index: 1;
  transform: translate(var(--footer-divider-icon-x), var(--footer-divider-icon-y));
}

.footer-divider-icon {
  width: var(--footer-divider-icon-w);
  max-width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 575.98px) {
  .footer-divider {
    --footer-divider-container-max: 100vw;
    --footer-divider-gap: 1.25rem;
  }
}

@media (min-width: 576px) {
  .footer-divider {
    --footer-divider-container-max: 540px;
  }
}

@media (min-width: 768px) {
  .footer-divider {
    --footer-divider-container-max: 720px;
  }
}

@media (min-width: 992px) {
  .footer-divider {
    --footer-divider-container-max: 960px;
  }
}

@media (min-width: 1200px) {
  .footer-divider {
    --footer-divider-container-max: 1140px;
  }
}

@media (min-width: 1400px) {
  .footer-divider {
    --footer-divider-container-max: 1320px;
  }
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.75rem;
  margin-bottom: 1.75rem;
}

.footer-nav-link {
  text-decoration: none;
  color: rgba(3, 3, 3, 0.7);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color 0.22s ease;
}

.footer-nav-link:hover {
  color: rgba(26, 89, 99, 1);
}

.footer-office-title {
  font-size: 1.25rem;
  letter-spacing: 0.06em;
  margin-bottom: 0.35rem;
  color: rgba(3, 3, 3, 0.95);
}

.footer-office-line {
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(3, 3, 3, 0.7);
}

.footer-bottom {
  margin-top: .25rem;
}

.footer-brand {
  font-family: "Venera", "Raleway", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(26, 89, 99, 0.95);
  font-size: clamp(1.9rem, 2.2vw, 2.4rem);
}

.footer-copy {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: rgba(3, 3, 3, 0.6);
}

.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.footer-social-link {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid rgba(26, 89, 99, 0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(26, 89, 99, 0.95);
  transition: background-color 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}

.footer-social-link svg {
  width: 32px;
  height: 32px;
}

.footer-social-link:hover {
  background: rgba(26, 89, 99, 0.08);
  border-color: rgba(26, 89, 99, 0.6);
  transform: translateY(-1px);
}

.footer-illustration {
  width: min(280px, 100%);
  height: auto;
  display: block;
}

.reveal-title {
  perspective: 900px;
}

.reveal-char {
  display: inline-block;
  transform-style: preserve-3d;
  backface-visibility: hidden;
}

.reveal-word {
  display: inline-block;
  white-space: nowrap;
}

.reveal-space {
  display: inline-block;
  white-space: pre;
  min-width: 0.35em;
}

@media (max-width: 992px) {
  .awards-section {
    padding: 4.25rem 0 2.75rem;
  }

  .footer-divider {
    margin-bottom: 1.75rem;
  }

  .footer-bottom {
    margin-top: 2rem;
  }
}

.section-white {
  background-color: #fff;
}