@font-face {
  font-family: "Canela";
  src:
    url("../fonts/Canela-Regular-Web.woff2") format("woff2"),
    url("../fonts/Canela-Regular.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg-dark: #0C1929;
  --text-main-dark: #f5f7fb;
  --text-muted-dark: #a2afc4;
  --accent: #7D6C4D;
  --nav-height: 76px;
  --font-sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-serif: "Canela", serif;
  --side-padding: clamp(20px, 6vw, 80px);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

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

img,
video,
svg {
  max-width: 100%;
}
html {
  scrollbar-width: none;
}

html::-webkit-scrollbar {
  display: none;
}

body {
  -ms-overflow-style: none;
  font-family: var(--font-sans);
  color: var(--accent);
  background-color: #ffffff;
  overflow-x: hidden;
}

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

main,
section {
  width: 100%;
}

html.intro-skip .intro-screen {
  display: none !important;
  animation: none !important;
}

body.show-content .intro-screen {
  display: none;
}

.intro-screen {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  background: transparent;
  animation: introScreenFade 4s ease forwards;
  will-change: opacity;
}

.intro-logo img {
  width: 70px;
  height: auto;
  opacity: 0;
  transform: translateY(8px);
  animation: introLogo 3s ease forwards;
}

@keyframes introLogo {
  0% {
    opacity: 0;
    transform: translateY(8px);
  }

  25% {
    opacity: 1;
    transform: translateY(0);
  }

  70% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateY(-4px);
  }
}

@keyframes introScreenFade {
  0% {
    opacity: 1;
  }

  80% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    visibility: hidden;
  }
}

.nav-inner {
  width: 100%;
  padding: 0 var(--side-padding);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand img {
  height: 35px;
  width: auto;
  display: block;
}

.site-header .logo {
  display: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.9rem;
  font-weight: 200;
  margin-bottom: 0;
}

.nav-links .nav-link {
  position: relative;
  opacity: 0.85;
  transition: opacity 0.2s ease;
  padding-left: 0;
  padding-right: 0;
  color: var(--text-main-dark);
}

.nav-links .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 1px;
  background: var(--text-main-dark);
  border-radius: 999px;
  transition: width 0.25s ease;
}

.nav-links .nav-link:hover {
  opacity: 1;
}

.nav-links .nav-link:hover::after {
  width: 100%;
}

.site-header .nav-links .nav-link.is-active {
  opacity: 1;
}

.site-header .nav-links .nav-link.is-active::after {
  width: 100%;
}


.site-header .logo-light {
  display: block;
}

.site-header .logo-dark {
  display: none;
}

body.nav-hero .site-header {
  background-color: transparent;
  backdrop-filter: blur(20px);
}

body.nav-solid .site-header {
  background-color: #2F4050;
  backdrop-filter: none;
}

.site-header,
.site-header .nav-links .nav-link {
  color: #ffffff;
}

.site-header .nav-links .nav-link::after {
  background: #ffffff;
}

.site-header .navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.18);
}

.site-header .navbar-toggler-icon {
  width: 1em;
  height: 1em;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,0.95%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.hero {
  position: relative;
  min-height: 100vh;
  padding-top: calc(var(--nav-height) + 10px);
  overflow: hidden;
  color: var(--text-main-dark);
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: linear-gradient(135deg,
      #0C1929 0%,
      #0C1929 8%,
      #4F6273 22%,
      #0C1929 45%,
      #4F6273 70%,
      #0C1929 92%,
      #0C1929 100%);
  background-size: 400% 400%;
  animation: shineAnimation 20s ease-in-out infinite alternate;
  z-index: 0;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

@keyframes shineAnimation {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.hero::before {
  content: "";
  position: absolute;
  inset: -10%;
  background: radial-gradient(circle at 0% 0%, rgba(0, 0, 0, 0.45), transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(0, 0, 0, 0.45), transparent 55%);
  mix-blend-mode: multiply;
  opacity: 0.6;
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  width: 100%;
  min-height: calc(100vh - var(--nav-height));
  padding: 80px var(--side-padding) 80px;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  align-items: flex-end;
  gap: 40px;
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 1s ease, transform 1s ease;
}

body.show-content .hero-inner {
  opacity: 1;
  transform: translateY(0);
}

.hero-copy {
  max-width: 720px;
  margin: 0;
}

.hero-title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(4.8rem, 7.8vw, 8.4rem);
  line-height: 1.05;
  text-align: left;
}

.hero-title-main {
  display: inline-block;
}

body.show-content .hero-line {
  animation: heroLineReveal 2s ease-out forwards;
}

@keyframes heroLineReveal {
  0% {
    opacity: 0;
    transform: translateY(18px);
    filter: blur(10px);
  }

  60% {
    opacity: 1;
    filter: blur(4px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.hero-subline {
  max-width: 500px;
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: var(--text-muted-dark);
  opacity: 0;
  transform: translateY(18px);
  filter: blur(10px);
}

body.show-content .hero-subline {
  animation: heroSublineReveal 2s ease-out forwards;
  animation-delay: 0.8s;
}

@keyframes heroSublineReveal {
  0% {
    opacity: 0;
    transform: translateY(18px);
    filter: blur(10px);
  }

  60% {
    opacity: 1;
    filter: blur(4px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.hero-cta-block {
  text-align: right;
  opacity: 0;
  transform: translateY(16px);
  filter: blur(8px);
}

body.hero-cta-ready .hero-cta-block {
  animation: heroCtaReveal 1.1s ease-out forwards;
  animation-delay: 0s;
}

@keyframes heroCtaReveal {
  0% {
    opacity: 0;
    transform: translateY(6px);
    filter: blur(8px);
  }

  60% {
    opacity: 1;
    filter: blur(3px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.hero-cta-label {
  position: relative;
  display: inline-block;
}

.hero-cta-label::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--text-main-dark);
  border-radius: 999px;
  transition: width 0.2s ease;
}

.hero-cta-btn:hover .hero-cta-label::after {
  width: 100%;
}

.hero-rotate-inner span {
  position: absolute;
  left: 0;
  bottom: 0;
  white-space: nowrap;
  opacity: 0;
  filter: blur(2px);
  transition: opacity 1.5s ease, filter 1.5s ease;
  font-size: 1em;
  line-height: 1em;
}

.hero-rotate-inner span.is-active {
  opacity: 1;
  filter: blur(0);
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.75s ease, transform 0.75s ease;
  will-change: opacity, transform;
}

.reveal-on-scroll.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

.content-section {
  position: relative;
  min-height: 100vh;
  padding: calc(var(--nav-height) + 40px) 0 60px;
  background-color: #ffffff;
  color: var(--accent);
  overflow: hidden;
}

.section-inner {
  width: 100%;
  height: 100%;
  padding: 0 var(--side-padding);
  position: relative;
  z-index: 1;
  display: flex;
  align-items: stretch;
}

.section-inner>.row {
  flex: 1 1 auto;
  align-items: stretch;
}


.section-col-body {
  max-width: 620px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.section-kicker {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #4F6273;
  margin-bottom: 12px;
}

.section-title-typing,
.cta-title .section-title-typing {
  display: inline-block;
  white-space: pre-line;
}

.section-title-typing.is-typing {
  opacity: 0.98;
}

.section-title-typing::after,
.section-title-typing.is-typing::after,
.section-title-typing.is-done::after {
  content: none !important;
  display: none !important;
}

.section-body-text {
  font-family: var(--font-sans);
  font-weight: 200;
  font-size: 0.98rem;
  text-align: justify;
  line-height: 1.6;
  color: #4F6273;
}


@media (min-width: 2400px) {
  .section-body-text {
    font-size: 1.32rem;
  }
}
#about.about-section .section-kicker {
  color: #d6c29a;
}

#about.about-section .section-title,
#about.about-section .section-body-text {
  color: white;
  font-weight: 200;
}

#about .section-col-body,
#about .about-text-inner {
  position: relative;
  z-index: 3;
}

#about .about-text-inner {
  padding-left: 28px;
}

#about .about-text-inner::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(255, 255, 255, 0.65);
}

#about .section-inner.reveal-on-scroll {
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
}

#about .about-text-inner .section-body-text {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 560ms ease, transform 560ms ease;
  will-change: opacity, transform;
}

#about .section-inner.is-revealed .about-text-inner .section-body-text {
  opacity: 1;
  transform: translateY(0);
}

#about .section-inner.is-revealed .about-text-inner .section-body-text:nth-of-type(1) {
  transition-delay: 0ms;
}

#about .section-inner.is-revealed .about-text-inner .section-body-text:nth-of-type(2) {
  transition-delay: 600ms;
}

#team .section-inner {
  display: block;
  height: auto;
  padding: 0 var(--side-padding);
}

#team .section-inner>.row {
  flex: 0 0 auto;
  align-items: flex-start;
}

.team-row {
  --bs-gutter-x: 0;
}

.team-photo-wrap {
  border-radius: 0;
  overflow: hidden;
}

.team-card:hover .team-photo {
  filter: grayscale(0%);
  transform: scale(1.02);
}

.team-nav:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.team-nav.is-disabled {
  opacity: 0.35;
  pointer-events: none;
}

#team.content-section {
  overflow: visible;
  padding-bottom: 110px;
}

.team-carousel-wrapper {
  margin-top: 18px;
  width: 100%;
}

.team-track {
  display: flex;
  gap: 16px;
  padding-right: 0;
  transition: transform 0.35s ease;
}

.team-card {
  flex: 0 0 260px;
}

.team-photo {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.35s ease, transform 0.35s ease;
}

.team-meta {
  margin-top: 10px;
}

.team-name {
  font-weight: 600;
  font-size: 0.92rem;
  color: #7D6C4D;
}

.team-role {
  font-size: 0.84rem;
  font-weight: 200;
  color: #4F6273;
}

#team .team-carousel {
  position: relative;
  overflow: visible;

}

#team .team-viewport {
  width: 100%;
  overflow: hidden;
  margin-right: 0;
}

#team .team-nav {
  top: auto !important;
  left: auto !important;
  bottom: 0;
  position: absolute;
  z-index: 5;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  padding: 0;
  opacity: 0.85;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

#team .team-nav-prev {
  right: 44px;
}

#team .team-nav:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.logo-carousel-section {
  background: white;
  color: white;
  padding: 56px 0 70px;
  border-bottom: 1px solid rgba(12, 25, 41, 0.06);
}

.logo-carousel-inner {
  padding: 0 var(--side-padding);
}

.logo-marquee {
  overflow: hidden;
  width: 100%;
}

.logo-track {
  display: flex;
  align-items: center;
  gap: 84px;
  width: max-content;
  will-change: transform;
  animation: logoMarquee var(--marquee-duration, 26s) linear infinite;
}

.logo-track img {
  height: 34px;
  width: auto;
  opacity: 0.7;
  filter: grayscale(100%);
  transition: opacity 0.2s ease, filter 0.2s ease, transform 0.2s ease;
}

.logo-track img:hover {
  opacity: 1;
  filter: none;
  transform: translateY(-1px);
}

@keyframes logoMarquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(calc(-1 * var(--marquee-distance, 1000px)), 0, 0);
  }
}

#numbers.numbers-section {
  background: #ffffff;
  color: #4F6273;
  padding-top: calc(var(--nav-height) + 40px);
  padding-bottom: calc(var(--nav-height) + 40px);
}

#numbers .numbers-inner {
  padding: 0 var(--side-padding);
}

#numbers .numbers-list {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

#numbers .num-item {
  position: relative;
  min-height: 110px;
}

#numbers .num-item-inner {
  position: relative;
  padding-left: 18px;
}

#numbers .num-item-inner::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2rem;
  bottom: 0.2rem;
  width: 1px;
  background: rgba(12, 25, 41, 0.18);
}

#numbers .num-main {
  font-family: var(--font-serif);
  font-size: clamp(3.1rem, 3.8vw, 4.4rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: #7D6C4D;
}

#numbers .num-label {
  margin-top: 12px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 200;
  line-height: 1.35;
  color: #4F6273;
  max-width: 20ch;
  opacity: 0.95;
}

@media (max-width: 1199.98px) {
  #numbers .numbers-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }
}

#locations.locations-section {
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  background: #fff;
  min-height: 100%;
}

#locations.locations-section .section-inner {
  flex: 1 1 auto;
  height: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 46px;
  padding-bottom: 0;
  position: relative;
  z-index: 1;
}

#locations .locations-header {
  max-width: 520px;
  align-self: flex-start;
  position: relative;
  z-index: 2;
}

#locations .locations-map-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

#locations .world-map-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center 20%;
  opacity: 1;
  transform-origin: center 20%;
}

#locations .locations-map-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.1) 45%,
      rgba(255, 255, 255, 0.96) 75%,
      rgba(255, 255, 255, 1) 100%);
}

#locations .office-locations {
  margin-top: auto;
  width: 100%;
  position: relative;
  z-index: 2;
  background: transparent;
  padding: clamp(34px, 4vw, 60px) 0;
  padding-bottom: 0;
  display: block;
}

#locations .office-grid {
  width: min(1400px, calc(100% - (var(--side-padding, 24px) * 2)));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: clamp(48px, 6vw, 96px);
  align-items: end;
}

#locations .office-col {
  position: relative;
  padding-left: clamp(16px, 2vw, 28px);
}

#locations .office-col::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: rgba(12, 25, 41, 0.12);
}

#locations .office-city {
  margin: 0 0 clamp(14px, 1.8vw, 40px);
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.875rem;
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: #7D6C4D;
}

#locations .office-address {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: clamp(0.95rem, 1.1vw, 1.25rem);
  line-height: 1.5;
  color: #4F6273;
  font-style: normal;
  max-width: 32ch;
}

@media (max-width: 767.98px) {
  #locations.locations-section .section-inner {
    height: 100%;
    min-height: 100%;
    gap: 30px;
  }

  #locations .office-grid {
    grid-template-columns: 1fr;
    row-gap: 22px;
    align-items: start;
  }

  #locations .office-col {
    padding-left: 18px;
  }

  #locations .office-city {
    font-size: 1.55rem;
    margin-bottom: 10px;
  }

  #locations .office-address {
    max-width: 40ch;
  }

  #locations .world-map-img {
    object-position: center 30%;
    opacity: 0.8;
  }
}

#services .services-bg {
  position: absolute;
  left: -8%;
  top: 10%;
  width: min(760px, 62vw);
  height: min(760px, 62vw);
  background: url("../assets/logo-icon-grey.svg") no-repeat;
  background-size: contain;
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
}

#services .services-layout {
  align-items: flex-start;
}

#services .services-right {
  min-width: 0;
}

#services .services-list {
  width: 100%;
}

#services .svc-item {
  border-bottom: 1px solid rgba(12, 25, 41, 0.14);
  padding: 18px 0px;
}

#services .svc-head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: transparent;
  border: 0;
  padding: 0;
  text-align: left;
  cursor: pointer;
  transition: transform 180ms ease;
}

#services .svc-head:hover {
  transform: translateY(-2.5px);
}

#services .svc-title {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(1.5rem, 1.8vw, 2rem);
  line-height: 1.12;
  color: #7D6C4D;
}

#services .svc-plus {
  width: 16px;
  height: 16px;
  position: relative;
  flex: 0 0 16px;
  color: #7D6C4D;
  transform-origin: 50% 50%;
  transition: transform 240ms ease;
}

#services .svc-plus::before,
#services .svc-plus::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: currentColor;
  opacity: 0.9;
  transform: translate(-50%, -50%);
}

#services .svc-plus::before {
  width: 16px;
  height: 1px;
}

#services .svc-plus::after {
  width: 1px;
  height: 16px;
}

#services .svc-desc {
  margin: 10px 0 0;
  font-family: var(--font-sans);
  font-weight: 200;
  font-size: 0.98rem;
  line-height: 1.65;
  color: #4F6273;
  max-width: 70ch;
}

#services .svc-dropdown {
  height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-4px);
  transition: height 420ms cubic-bezier(0.22, 0.61, 0.36, 1),
    opacity 220ms ease,
    transform 220ms ease;
  will-change: height;
}

#services .svc-item.is-open .svc-dropdown {
  opacity: 1;
  transform: translateY(0);
  margin-top: 10px;
}

#services .svc-item.is-open .svc-plus {
  transform: rotate(45deg);
}

#services .svc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

#services .svc-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 16px;
  height: 16px;
  background: url("../assets/single-line-logo-grey.svg") no-repeat center;
  background-size: contain;
  opacity: 0.8;
  transform: translateY(-50%);
}

#services .svc-list li {
  position: relative;
  padding-left: 30px;
  margin: 10px 0;
  font-family: var(--font-sans);
  font-weight: 200;
  font-size: 1rem;
  line-height: 1.55;
  color: #4F6273;
  transition: min-height 220ms ease;
}

html.svc-typing-enabled #services .svc-dropdown .svc-list li {
  opacity: 0;
}

html.svc-typing-enabled #services .svc-dropdown .svc-list li.svc-bullet-ready {
  opacity: 1;
  transition: opacity 160ms ease;
}

#services .svc-list li.is-typing::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 1em;
  margin-left: 0.12em;
  background: currentColor;
  transform: translateY(0.12em);
  opacity: 0.7;
  animation: svc-bullet-caret 900ms steps(1) infinite;
}

@keyframes svc-bullet-caret {
  50% {
    opacity: 0;
  }
}

.simple-cta-section.simple-cta-scroll {
  position: relative;
  background: transparent;
  padding: 0;
  overflow: clip;
  isolation: isolate;
}

.simple-cta-bg {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  background-image: url("../assets/img/AdobeStock_1304186168.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.simple-cta-inner {
  position: relative;
  z-index: 2;
  min-height: 60vh;
  padding: 110px var(--side-padding) 120px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.simple-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 1.1rem;
  color: white;
  opacity: 0.95;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.simple-cta-text {
  position: relative;
  display: inline-block;
}

.simple-cta-text::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition: width 0.2s ease;
}

.simple-cta-link:hover .simple-cta-text::after {
  width: 100%;
}

.simple-cta-link:hover {
  opacity: 1;
  transform: translateY(-1px);
}

#announcements .announcements-grid {
  margin-left: auto;
  margin-right: calc(-1 * var(--side-padding));
  padding-right: var(--side-padding);
}

#announcements .announcement-link {
  width: 36px;
  height: 36px;
  background: #0C1929;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  text-decoration: none;
  opacity: 0.96;
  transition: opacity 0.2s ease, transform 0.2s ease;
  font-size: 0;
  letter-spacing: 0;
}

#announcements .announcement-link-icon {
  font-size: 1.1rem;
}

#announcements .announcement-link:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.announcements-section {
  position: relative;
  background: linear-gradient(135deg,
      #0C1929 0%,
      #0C1929 8%,
       #4F6273 22%,
      #0C1929 45%,
      #4F6273 70%,
      #0C1929 92%,
      #0C1929 100%);
  background-size: 400% 400%;
  animation: shineAnimation 20s ease-in-out infinite alternate;
  color: var(--text-main-dark);
  padding-top: calc(var(--nav-height) + 40px);
  padding-bottom: 80px;
  overflow: hidden;
}

#announcements .section-col-main,
#announcements .section-col-body {
  max-width: none !important;
}

#announcements .section-kicker {
  color: rgba(226, 232, 240, 0.8);
}

#announcements .section-title {
  color: #f9fafb;
}

#announcements .section-body-text {
  color: rgba(209, 213, 219, 0.9);
  margin-top: 12px;
}

#announcements .ann-row {
  min-height: calc(100vh - (var(--nav-height) + 40px + 80px));
  align-items: stretch;
}

#announcements .ann-right {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
}

#announcements .ann-wrap {
  width: 100%;
  max-width: 1100px;
  margin-left: auto;
  margin-top: auto;
}

@media (min-width: 1200px) {
  #announcements .ann-wrap {
    max-width: 1240px;
  }
}

@media (min-width: 1400px) {
  #announcements .ann-wrap {
    max-width: 1360px;
  }
}

#announcements .ann-carousel {
  width: 100%;
}

#announcements .carousel-inner {
  overflow: hidden;
}

#announcements .carousel-item {
  display: none;
  gap: 18px;
  align-items: stretch;
}

#announcements .carousel-item.active,
#announcements .carousel-item-next,
#announcements .carousel-item-prev {
  display: flex;
}

#announcements .ann-slide-col {
  flex: 0 0 100%;
}

@media (min-width: 768px) {
  #announcements .ann-slide-col {
    flex: 0 0 calc(50% - 9px);
  }
}

#announcements .ann-card {
  background: #ffffff;
  color: #4F6273;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

#announcements .ann-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 12;
  overflow: hidden;
}

#announcements .ann-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  filter: saturate(0.95) contrast(1.05) brightness(0.88);
  transition: transform 320ms ease, filter 320ms ease;
  display: block;
}

#announcements .ann-card:hover .ann-media img {
  transform: scale(1.06);
  filter: saturate(1) contrast(1.06) brightness(0.92);
}

#announcements .ann-body {
  padding: 20px 20px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1 1 auto;
}

#announcements .announcement-label {
  display: inline-flex;
  align-items: center;
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #4F6273;
}

#announcements .announcement-title {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.6rem;
  line-height: 1.3;
  color: #7D6C4D;
}

#announcements .announcement-excerpt {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 200;
  line-height: 1.65;
  color: #4F6273;
}

#announcements .ann-actions {
  margin-top: auto;
  padding-top: 14px;
  display: flex;
  justify-content: flex-end;
}

#announcements .ann-card-link {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

#announcements .ann-card-link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

#announcements .carousel-indicators.ann-indicators {
  position: static;
  margin: 16px 0 0;
  gap: 8px;
  justify-content: center;
}

#announcements .ann-indicators [data-bs-target] {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  border: 1px solid rgba(245, 247, 251, 0.55);
  background: transparent;
  opacity: 1;
  transition: background-color 0.18s ease, border-color 0.18s ease, width 0.18s ease;
}

#announcements .ann-indicators .active {
  width: 18px;
  background: rgba(245, 247, 251, 0.95);
  border-color: rgba(245, 247, 251, 0.95);
}

#contact .contact-subline {
  margin-top: 16px;
  color: #4F6273;
  font-weight: 300;
  max-width: 340px;
}

.contact-form {
  width: 100%;
  max-width: 760px;
  margin-left: auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 64px;
  row-gap: 34px;
  align-items: end;
}

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-field-full {
  grid-column: 1 / -1;
}

.contact-label {
  font-size: 0.9rem;
  font-weight: 200;
  color: rgba(74, 99, 117, 0.9);
}

.contact-input,
.contact-textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(125, 108, 77, 0.45);
  background: transparent;
  padding: 8px 0 10px;
  font-family: var(--font-sans);
  font-size: 0.98rem;
  font-weight: 300;
  color: #7D6C4D;
  outline: none;
}

.contact-textarea {
  resize: vertical;
  min-height: 44px;
}

.contact-input:focus,
.contact-textarea:focus {
  border-bottom-color: rgba(12, 25, 41, 0.9);
}

.contact-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 46px;
}

.contact-submit {
  border: 0;
  background: transparent;
  color: #4F6273;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  cursor: pointer;
  opacity: 0.95;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.contact-submit:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.contact-submit-label {
  position: relative;
  display: inline-block;
}

.contact-submit-label::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0%;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition: width 0.2s ease;
}

.contact-submit:hover .contact-submit-label::after {
  width: 100%;
}

.contact-submit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.site-footer {
  background-color: #0C1929;
  color: #fff;
  padding: 66px var(--side-padding) 50px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.footer-top-left {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}

.footer-column h4 {
  margin-bottom: 14px;
  font-size: 0.8rem;
  font-weight: 200;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
}

.footer-column ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-column li+li {
  margin-top: 8px;
}

.footer-column a {
  font-size: 0.8rem;
  font-weight: 200;
  color: #d5deea;
}

.footer-column a:hover {
  color: #ffffff;
}

.footer-top-right {
  display: flex;
  align-items: flex-start;
}

.footer-linkedin {
  color: #d5deea;
  opacity: 0.85;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.footer-linkedin:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.footer-bottom {
  text-align: center;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.5);
}

.site-footer.footer-overlay {
  position: relative;
  overflow: hidden;
  padding: 36px var(--side-padding) 36px;
}

.site-footer.footer-overlay .footer-layer-content {
  position: relative;
  z-index: 2;
}

.site-footer.footer-overlay .footer-layer-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0 var(--side-padding) 8px;
}

.site-footer.footer-overlay .footer-wordmark {
  width: 100%;
  display: flex;
  justify-content: center;
}

.site-footer.footer-overlay .footer-wordmark img {
  width: min(1100px, 92%);
  max-width: 100%;
  height: auto;
}

.site-footer.footer-overlay .footer-inner {
  gap: 16px;
}

.site-footer.footer-overlay .footer-top {
  gap: 28px;
}

@media (max-width: 720px) {
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }

  .footer-top-left {
    gap: 32px;
  }

  .site-footer.footer-overlay {
    padding: 24px var(--side-padding) 18px;
  }

  .site-footer.footer-overlay .footer-layer-bg {
    align-items: center;
    padding-bottom: 0;
  }

  .site-footer.footer-overlay .footer-wordmark {
    opacity: 0.10;
  }
    .footer-top {
      position: relative;
      padding-right: 46px;
      /* reserves space so it doesn’t overlap content */
    }
  
    .footer-top-right {
      position: absolute;
      top: 0;
      right: 0;
    }
  
    .footer-linkedin {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 38px;
      height: 38px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.06);
      opacity: 0.9;
    }
  
    .footer-linkedin:hover {
      opacity: 1;
      transform: translateY(-1px);
    }
}

.footer-wordmark-wrap {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.footer-wordmark {
  display: flex;
  justify-content: center;
  opacity: 0.18;
}

.footer-wordmark img {
  display: block;
  width: min(1100px, 100%);
  max-width: 100%;
  height: auto;
}

.parallax {
  will-change: transform;
  transition: transform 0.22s ease-out;
}

.parallax:not(.section-inner) {
  --parallax-offset: 0px;
  transform: translateY(var(--parallax-offset));
}

#about .section-inner,
#services .section-inner,
#contact .section-inner {
  height: auto;
  min-height: calc(100vh - (var(--nav-height) + 40px + 80px));
}

#about .section-inner>.row,
#services .section-inner>.row,
#contact .section-inner>.row {
  flex: 1 1 auto;
  align-items: stretch;
}

#services .service-card.reveal-on-scroll,
#services .service-card-body.reveal-on-scroll,
#services .service-card .reveal-on-scroll {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

#services .services-intro-row {
  min-height: auto;
  margin-bottom: 18px;
}

#services .section-title {
  font-size: clamp(3rem, 3vw, 3rem);
  line-height: 1.05;
  margin-bottom: 10px;
}

#services .services-strip {
  margin-top: 14px;
}

#services .services-chip {
  padding-top: 10px;
}

#services .services-cards-wrap {
  display: flex;
}

#services .services-grid {
  flex: 1 1 auto;
  margin-top: 18px;
  align-items: stretch;
}

#services .services-grid>[class*="col-"] {
  display: flex;
}

#services .service-card {
  width: 100%;
  padding: 34px clamp(20px, 2.6vw, 40px);
  display: flex;
  align-items: flex-end;
}

#services .service-heading {
  font-size: clamp(1.85rem, 2.1vw, 2.35rem);
  line-height: 1.06;
}

#services .service-intro {
  font-size: 0.98rem;
  line-height: 1.55;
}

#services .service-toggle {
  margin-top: 16px;
  padding-top: 14px;
}

#services .service-list li {
  margin: 8px 0;
  font-size: 0.94rem;
}

#services .section-inner {
  position: relative;
  z-index: 1;
  padding-left: var(--side-padding);
  padding-right: var(--side-padding);
  min-height: 0 !important;
  height: auto !important;
}

#services.content-section {
  position: relative;
  background: #fff;
  padding-top: calc(var(--nav-height) + 44px);
  padding-bottom: 64px;
  overflow: hidden;
  min-height: 100vh;
}

#services {
  position: relative;
  overflow: hidden;
  background: #fff;
}

#services>.section-inner,
#services>.services-cards-wrap {
  position: relative;
  z-index: 1;
}

@media (min-width: 992px) {
  
  .hero-line {
    white-space: nowrap;
  }



  #services .services-list {
    margin-top: clamp(40px, 18vh, 210px);
  }

  #announcements .ann-slide-col {
    flex: 0 0 calc(33.333% - 12px);
  }

  .site-header.nav-autohide {
    will-change: transform, opacity;
  }

  .site-header.nav-autohide.is-hidden {
    opacity: 0;
    transform: translateY(-14px);
    pointer-events: none;
  }

  .site-header.nav-autohide.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
}
.site-header.nav-autohide {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  will-change: transform;
  transition: transform 280ms ease;
}

.site-header.nav-autohide.is-hidden {
  transform: translateY(-110%);
}

.site-header.nav-autohide.is-visible {
  transform: translateY(0);
}
body.hero-rotate-ready .hero-rotate {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 600ms ease, visibility 0s;
}

.hero-typing::after,
.hero-typing.is-typing::after,
.hero-typing.is-done::after {
  content: none !important;
  display: none !important;
}

@keyframes heroCaretBlink {
  50% {
    opacity: 0;
  }
}

.hero-rotate-inner .hero-typing {
  position: relative !important;
  opacity: 1 !important;
  filter: none !important;
  transition: none !important;
  left: auto !important;
  bottom: auto !important;
}

#services-cta.cta-split {
  padding: 0;
  background: #2F4050;
  overflow: hidden;
  position: relative;
  isolation: isolate;
}

#services-cta .cta-split-media {
  position: sticky;
  top: 0;
  height: 60vh;
  width: 100%;
  background-image: url("../assets/img/secondimg.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#services-cta .cta-split-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

#services-cta .cta-split-panel {
  min-height: 60vh;
  padding: 110px var(--side-padding);
  position: relative;
  background-color: #5A6B7F;
}

#services-cta .cta-split-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.08;
  pointer-events: none;
}

#services-cta .cta-split-content {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
}

#services-cta .cta-kicker {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 200;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: rgba(245, 247, 251, 0.70);
  margin-bottom: 14px;
}

#services-cta .cta-title {
  margin: 0 0 14px;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(3rem, 3vw, 3rem);
  line-height: 1.05;
  color: #ffffff;
}

#services-cta .cta-sub {
  margin: 0 0 22px;
  font-family: var(--font-sans);
  font-weight: 200;
  font-size: 0.98rem;
  line-height: 1.6;
  color: white;
  max-width: 46ch;
}

#services-cta .cta-points {
  display: grid;
  gap: 10px;
  margin-bottom: 26px;
}

#services-cta .cta-point {
  position: relative;
  padding-left: 16px;
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.95rem;
  color: rgba(245, 247, 251, 0.78);
}

#services-cta .cta-point::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(245, 247, 251, 0.65);
}

#services-cta .cta-actions {
  margin-top: 20px;
}

#services-cta .cta-split-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 16px 12px 18px;
  border-radius: 999px;
  color: #fff;
  font-family: var(--font-sans);
  font-weight: 200;
  font-size: 0.98rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  opacity: 0.96;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

#services-cta .cta-split-link:hover {
  transform: translateY(-2px);
  opacity: 1;
}

#services-cta .cta-split-icon {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.hero-static::before {
  content: "Evolve";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(110deg,
      #6a5b41 0%,
      #7D6C4D 22%,
      #cdbb93 40%,
      #7D6C4D 62%,
      #5a4f3b 100%);
  background-size: 260% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 6px 14px rgba(125, 108, 77, 0.10));
  will-change: opacity, background-position;
}

body.hero-finished .hero-static {
  color: rgba(245, 247, 251, 0);
  transition: color 1100ms cubic-bezier(0.22, 0.61, 0.36, 1);
  transition-delay: 420ms;
}

@keyframes heroGoldFlow {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

body.hero-finished .hero-tagline {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
  transition: opacity 600ms ease, transform 600ms ease, filter 600ms ease;
  pointer-events: auto;
}

.hero-tagline-typing {
  display: inline-block;
  white-space: nowrap;
}

#about.about-section {
  position: relative;
  background-image: none !important;
  color: white;
  overflow: hidden;
  isolation: isolate;
  background-color: #0C1929;
}

#about.about-section .about-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  pointer-events: none;
  filter: saturate(0.95) contrast(1.05) brightness(0.78);
  transform: scale(1.02);
}

#about.about-section .section-inner {
  position: relative;
  z-index: 3;
}

#about.about-section::before {
  content: none !important;
  background: none !important;
  z-index: 1;
}

#about.about-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 15, 38, 0.55), rgba(0, 15, 38, 0.78));
  opacity: 0.75;
  pointer-events: none;
  z-index: 2;
}

.site-header .navbar-toggler {
  border-color: rgba(255, 255, 255, 0.55);
  border: 0 !important;
  padding: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
}

.site-header .navbar-toggler:focus,
.site-header .navbar-toggler:focus-visible {
  outline: none !important;
  box-shadow: none !important;
}

#numbers,
#services,
#team,
#locations,
#announcements,
#contact,
#hero,
.site-footer {
  position: relative;
  z-index: 2;
}

#about {
  position: relative;
  background: transparent !important;
  z-index: 1;
  overflow: hidden;
}

#about .about-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  transform: translateZ(0);
  transition: opacity 220ms ease;
}

body.about-video-on #about .about-bg {
  opacity: 1;
}

#about .about-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

#about::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(12, 25, 41, 0.38);
  pointer-events: none;
}

#about .section-inner {
  position: relative;
  z-index: 2;
}

.hero-rotate {
  display: inline-block;
  position: relative;
  vertical-align: baseline;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 600ms ease, visibility 0s linear 600ms;
  min-width: 0;
  white-space: nowrap;
}

.hero-rotate.is-hidden {
  display: none !important;
}

body.hero-finished .hero-rotate {
  display: none !important;
}

.hero-tagline {
  margin: 10px 0 22px;
  max-width: 46ch;
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(1.2rem, 1.35vw, 1.45rem);
  line-height: 1.4;
  letter-spacing: 0.01em;
  color: rgba(245, 247, 251, 0.92);
  opacity: 0;
  transform: translateY(10px);
  filter: blur(8px);
  pointer-events: none;
  margin-top: 10px;
}

.hero-title,
.hero-title-main,
.hero-line {
  line-height: 1.05;
}

.hero-static,
.hero-rotate,
.hero-typing {
  display: inline-block;
  vertical-align: baseline;
  line-height: inherit;
}

.hero-typing {
  position: relative;
  display: inline-block;
  white-space: nowrap;
  font: inherit;
}

#hero {
  min-height: 100svh;
}

@supports (height: 100dvh) {
  #hero {
    min-height: 100dvh;
    /* dynamic viewport, best on modern browsers */
  }
}



.hero-line {
  display: inline-flex !important;
  align-items: flex-end !important;
  gap: 0.35ch;
  opacity: 0;
  transform: translateY(18px);
  filter: blur(10px);
  grid-auto-flow: column;
  grid-template-columns: max-content 1fr;
  column-gap: .35ch;
}

.hero-static,
.hero-rotate,
.hero-rotate-inner,
.hero-typing {
  line-height: 1 !important;
  display: inline-block;
  vertical-align: bottom !important;
  transform: translateZ(0);
}

.hero-rotate-inner {
  position: relative;
  display: inline-block;
  height: 1em !important;
  line-height: 1em;
  vertical-align: baseline;
  overflow: hidden;
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 44px var(--side-padding) 56px;
    gap: 18px;
    align-items: flex-start;
  }

  .hero-copy {
    width: 100%;
    max-width: none;
    margin: 0 auto;
    text-align: center;
  }

  .hero-title {
    text-align: center;
    font-size: clamp(3rem, 12vw, 4.2rem);
    line-height: 1.0;
    margin: 0 0 16px;
  }

  .hero-static,
  .hero-rotate {
    display: block;
    width: 100%;
    max-width: none;
    text-align: center;
    margin: 0 auto;
  }

  .hero-subline {
    max-width: 36ch;
    text-align: center;
    margin: 0 auto;
    line-height: 1.45;
  }

  .hero-cta-block {
    text-align: center;
    margin-top: 24px;
  }

  .content-section {
    padding: calc(var(--nav-height) + 24px) 0 64px;
  }

  .section-col-body {
    margin-top: 32px;
    justify-content: flex-start;
  }

  .team-viewport {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .team-nav {
    display: none;
  }

  #team.content-section {
    padding-bottom: 88px;
  }

  .team-card {
    flex: 0 0 220px;
  }

  .team-track {
    gap: 14px;
  }

  #team .team-nav {
    display: none;
  }

  .logo-carousel-section {
    padding: 44px 0 32px;
  }

  .logo-track {
    gap: 52px;
    animation-duration: 22s;
  }

  .logo-track img {
    height: 26px;
  }

  .simple-cta-inner {
    min-height: 52vh;
    padding: 84px var(--side-padding) 92px;
  }

  .contact-form {
    max-width: none;
    margin-left: 0;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: 24px;
  }

  .contact-actions {
    justify-content: flex-start;
  }

  .hero-typing {
    white-space: normal;
    text-align: center;
  }

  .hero-tagline {
    max-width: 34ch;
  }

  .hero-tagline-typing {
    white-space: normal;
  }

  .hero-line {
    display: inline-grid !important;
    flex-direction: column;
    align-items: end !important;
    gap: 0.18em;
    white-space: nowrap !important;
    width: 100%;
    grid-auto-flow: column;
    grid-template-columns: max-content 1fr;
    column-gap: .35ch;
  }

  .hero-static {
    white-space: nowrap;
  }

  .hero-rotate {
    white-space: nowrap !important;
  }

  .hero-rotate-inner {
    position: relative;
    width: 100%;
    min-height: 1em;
    height: 1em !important;
    line-height: 1em !important;
    display: inline-block !important;
    overflow: hidden;
    vertical-align: bottom;
  }

  .hero-rotate-inner span,
  .hero-typing {
    line-height: 1em !important;
    vertical-align: bottom !important;
    font: inherit;
    transform: translate3d(0, 0, 0);
  }

  .hero-rotate-inner span {
    position: absolute;
    inset: 0;
    width: 100%;
    text-align: center;
    white-space: normal;
    line-height: 1.1;
    transform: none;
    bottom: 0;
    left: 0;
  }
}

#parallax-band.parallax-band {
  position: relative;
  width: 100%;
  height: clamp(260px, 42vh, 520px);
  background-image: url("../assets/img/service-img.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  overflow: hidden;
}

#parallax-band.parallax-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(12, 25, 41, 0.35), transparent 60%),
    linear-gradient(to bottom, rgba(12, 25, 41, 0.35), rgba(12, 25, 41, 0.65));
  opacity: 0.75;
  pointer-events: none;
}

@media (max-width: 991.98px) {
  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding-top: 12px;
  }

  .nav-links .nav-link {
    padding: 4px 0;
  }

  .site-header {
    width: 100vw;
    left: 0;
    right: 0;
  }

  .site-header .nav-inner {
    position: relative;
    width: 100%;
    max-width: 100%;
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .site-header .navbar-brand {
    display: inline-flex;
    align-items: center;
    max-width: calc(100% - 56px);
    min-width: 0;
  }

  .site-header .navbar-brand img {
    max-width: 100%;
    height: 22px;
  }

  .site-header .navbar-toggler {
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    margin: 0 !important;
    z-index: 60;
  }

  #numbers.numbers-section {
    padding-top: 44px;
    padding-bottom: 44px;
  }

  #numbers .numbers-list {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  #numbers .num-item {
    min-height: 0;
  }

  #numbers .num-item-inner {
    padding-left: 20px;
  }

  #numbers .num-label {
    max-width: none;
  }

  #locations .office-grid {
    column-gap: clamp(28px, 5vw, 56px);
    margin: 0 !important;
  }

  #locations .world-map-img {
    object-position: center 32%;
  }

  #services .section-inner {
    padding-right: var(--side-padding);
  }

  #services .services-list {
    margin-top: 28px;
  }

  #services .svc-desc {
    max-width: none;
  }

  #announcements .ann-row {
    min-height: 0;
  }

  #announcements .ann-right {
    justify-content: flex-start;
    align-items: flex-start;
  }

  #announcements .ann-wrap {
    margin-top: 24px;
    margin-left: 0;
    max-width: none;
  }

  #announcements .announcement-title {
    font-size: 1.1rem;
  }

  #services.content-section {
    padding-bottom: 72px;
  }

  #services .services-cards-wrap {
    display: block;
  }

  #services .service-card {
    height: auto;
    min-height: 340px;
    padding: 32px var(--side-padding);
  }

  #services .services-grid {
    margin-top: 32px;
  }

  #services-cta .cta-split-media {
    position: relative;
    top: auto;
    height: 56vh;
  }

  #services-cta .cta-split-panel {
    min-height: 52vh;
    padding: 84px var(--side-padding);
  }

  #services-cta .cta-actions {
    justify-content: flex-start !important;
  }

  .site-header .navbar-collapse {
    position: fixed;
    inset: 0;
    top: var(--nav-height);
    height: calc(100vh - var(--nav-height)) !important;
    width: 100vw;
    background: #2F4050;
    padding: 22px 16px 28px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 49;
    display: block !important;
  }

  .site-header .navbar-collapse.collapse {
    opacity: 0;
    transform: translateY(-12px);
    pointer-events: none;
  }

  .site-header .navbar-collapse.collapsing,
  .site-header .navbar-collapse.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    transition: opacity 0.35s ease,
      transform 0.35s ease;
  }

  .site-header .nav-links .nav-link {
    position: relative;
    padding-left: 30px;
    line-height: 1.4;
    display: block;
  }

  .site-header .nav-links .nav-link::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.75em;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background: url("../assets/single-line-logo-white.svg") no-repeat center;
    background-size: contain;
    opacity: 0.95;
  }



  #hero .hero-inner {
    width: 100%;
    max-width: none;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-end;
    text-align: left;
    padding-left: var(--side-padding, 20px);
    padding-right: var(--side-padding, 20px);
    padding-top: calc(var(--nav-height, 80px) + 36px);
    padding-bottom: 28px;
    gap: 18px;
    transform: translate3d(0, clamp(-84px, -8vh, -48px), 0) !important;
  }

  #services .svc-card {
    overflow: visible;
  }

  #services .svc-card.is-open {
    z-index: 20;
  }

  #services .svc-card.is-open .svc-panel {
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
  }

  #services .svc-panel-body {
    height: auto;
  }

  #services .svc-panel {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: auto;
    height: auto;
    min-height: 100%;
    transform: translateY(100%);
    visibility: hidden;
    pointer-events: none;
    max-height: 85vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }

  #parallax-band.parallax-band {
    background-attachment: scroll;
    height: 260px;
  }
    /* Make the hero section behave like a true centered viewport */
    #hero.hero {
      min-height: 100svh;
      display: flex;
      flex-direction: column;
    }
  
    /* Override the earlier "push up" + "bottom align" behaviour */
    #hero .hero-inner {
      width: 100%;
      min-height: calc(100svh - var(--nav-height));
      max-width: none;
  
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
  
      /* Balanced padding so it feels centered even with the fixed nav */
      padding-left: var(--side-padding, 20px);
      padding-right: var(--side-padding, 20px);
      padding-top: calc(var(--nav-height) + 18px);
      padding-bottom: 22px;
  
      gap: 18px;
  
      /* Kill any previous transforms */
      transform: none !important;
    }
            #hero .hero-inner {
              justify-content: center;
              padding-top: calc(var(--nav-height) + 6px);
              padding-bottom: 34px;
            }
  
    /* Keep the copy block nicely centered and readable */
    #hero .hero-copy {
      width: 100%;
      max-width: 38rem;
      margin: 0 auto;
      text-align: center;
    }
  
    /* Bigger main title on mobile */
    #hero .hero-title {
      text-align: center;
      font-size: clamp(4.4rem, 16vw, 6.2rem);
      line-height: 0.98;
      margin: 0 0 12px;
    }
  
    /* Ensure both "Evolve" + rotating line sit centered and scale together */
    #hero .hero-static,
    #hero .hero-rotate {
      display: block;
      width: 100%;
      text-align: center;
      margin: 0 auto;
    }
  
    /* Give the rotating word a bit more presence (without changing desktop) */
    #hero .hero-rotate-inner {
      height: 1em !important;
      line-height: 1em !important;
    }
  
    #hero .hero-rotate-inner span {
      font-size: 1.02em;
      /* subtle boost */
      line-height: 1em !important;
    }
  
    /* Tagline centered under the title */
    #hero .hero-tagline {
      max-width: 34ch;
      margin-left: auto;
      margin-right: auto;
      text-align: center;
    }
  
    /* CTA sits under the text, still centered */
    #hero .hero-cta-block {
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      text-align: center;
      margin-top: 22px;
    }
  
    #hero .hero-cta-btn {
      width: auto;
      max-width: 100%;
    }
        /* Allow wrapping instead of forcing one line */
        #hero .hero-line {
          white-space: normal !important;
          display: flex !important;
          flex-direction: column;
          align-items: center;
          gap: 0.1em;
        }
    
        /* First line: Evolve */
        #hero .hero-static {
          white-space: normal;
          display: block;
          text-align: center;
        }
    
        /* Second line: rotating word */
        #hero .hero-rotate {
          white-space: normal !important;
          display: block;
          width: 100%;
          text-align: center;
        }
    
        /* Ensure rotating container does not overflow */
        #hero .hero-rotate-inner {
          width: 100%;
          height: 1.05em !important;
          overflow: hidden;
        }
    
        /* Center the rotating word itself */
        #hero .hero-rotate-inner span {
          width: 100%;
          text-align: center;
          left: 0;
        }
}
/* Slight extra squeeze for very small phones */
@media (max-width: 420px) {
  #hero .hero-inner {
    padding-top: calc(var(--nav-height) + 14px);
    gap: 14px;
  }

  #hero .hero-title {
    font-size: clamp(4.0rem, 17vw, 5.7rem);
  }
}

.hero-static {
  position: relative;
  display: inline-block;
  color: var(--text-main-dark);
  white-space: nowrap;
  isolation: isolate;
}

.hero-static::after {
  content: "Evolve";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  transform: translate(-1px, -1px);
  background: linear-gradient(145deg,
      rgba(255, 255, 255, 0.55) 0%,
      rgba(255, 255, 255, 0.18) 18%,
      rgba(255, 255, 255, 0.00) 55%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  mix-blend-mode: screen;
  filter: blur(0.2px);
}

body.hero-finished .hero-static::after {
  opacity: 0.55;
  transition: opacity 900ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

body.hero-finished .hero-static::before {
  opacity: 1;
  transition: opacity 900ms cubic-bezier(0.22, 0.61, 0.36, 1);
  animation: heroGoldFlow 8.5s ease-in-out infinite;
  -webkit-text-stroke: 0.6px rgba(0, 0, 0, 0.18);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .logo-track {
    animation: none !important;
  }

  #services .svc-head,
  #services .svc-plus,
  #services .svc-dropdown {
    transition: none !important;
  }

  #services .svc-list li.is-typing::after {
    animation: none !important;
  }

  .simple-cta-bg,
  .simple-cta-bg-overlay {
    position: relative;
    top: auto;
    height: 60vh;
  }

  #announcements .carousel-item {
    transition: none !important;
  }

  #announcements .ann-media img {
    transition: none !important;
  }

  .hero,
  .intro-screen,
  .intro-logo img {
    animation: none !important;
  }

  .hero-inner,
  .hero-line,
  .hero-subline,
  .hero-cta-block {
    transition: none !important;
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }

  #services .collapse,
  #services .collapsing,
  #services .service-list,
  #services .service-card {
    transition: none !important;
  }

  #services .service-card,
  #services .service-cta,
  #services .reveal-on-scroll {
    transition: none !important;
  }

  #services-cta .cta-split-media {
    position: relative;
    height: 56vh;
  }

  body.hero-finished .hero-static::before {
    animation: none !important;
  }
}

.hero-tagline,
body.show-content .hero-tagline {
  animation: none !important;
}

.hero-tagline * {
  animation: none !important;
}

.contact-hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 50;
  display: flex;
  align-items: center;
  backdrop-filter: blur(20px);
  color: var(--text-main-dark);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 450ms ease;
  background-color: transparent;
  visibility: hidden;
  pointer-events: none;
}

body.show-content .site-header {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
}

.section-title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(3rem, 3vw, 3rem);
  line-height: 1.1;
  color: #7D6C4D;
  position: relative;
  display: block !important;
}

.section-title-ghost {
  display: block;
  visibility: hidden;
  white-space: pre-line;
}

.section-title-typing {
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100%;
  display: block;
  white-space: pre-line;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
  display: none;
}

.cookie-inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 18px;
  background-color: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.cookie-text strong {
  display: block;
  font-weight: 600;
  margin-bottom: 4px;
}

.cookie-sub {
  font-size: 0.92rem;
  line-height: 1.45;
  color: #4F6273;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex: 0 0 auto;
}

.cookie-btn {
  font-family: var(--font-sans);
  padding: 10px 14px;
  font-weight: 200;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.12s ease, opacity 0.12s ease;
}

.cookie-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.05);
}

.cookie-btn:active {
  transform: translateY(1px);
}

.cookie-btn-ghost {
  background-color: #E8E8E8;
  color: #4F6273;
}

.cookie-btn-solid {
  background: var(--accent);
  color: white;
}

@media (max-width: 560px) {
  .cookie-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .cookie-actions {
    display: flex;
    width: 100%;
    gap: 12px; /* space between buttons */
  }

  .cookie-actions .cookie-btn {
    flex: 1 1 0;
    width: 100%;
    justify-content: center;
  }
}


/* ----------------------------------------
   MOBILE NAV: when collapse is open, force header solid (even on hero)
---------------------------------------- */
@media (max-width: 991.98px) {

  /* When the mobile menu is open, make the whole header solid */
  body.nav-hero .site-header:has(#mainNav.show) {
    background-color: #2F4050 !important;
    backdrop-filter: none !important;
  }

  /* Optional: ensure the dropdown area has the same solid background too */
  body.nav-hero .site-header:has(#mainNav.show) #mainNav {
    background-color: #2F4050 !important;
  }
}

/* Mobile: 1 per view and controls sit a bit tighter */
@media (max-width: 991.98px) {
  #announcements {
    --ann-per-view: 1;
  }




  #announcements .ann-indicators {
    margin-top: 14px;
  }
}
/* ----------------------------------------
   ANNOUNCEMENTS: hard stop overflow + stable slide sizing
---------------------------------------- */

#announcements .ann-wrap,
#announcements .ann-carousel,
#announcements .carousel-inner {
  max-width: 100%;
}


/* The slide layout: grid that cannot overflow */
#announcements .ann-slide {
  width: 100%;
  max-width: 100%;
  display: grid;
  gap: 18px;
  align-items: stretch;
}

/* Desktop: 3 columns */
@media (min-width: 992px) {
  #announcements .ann-slide {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Mobile: 1 column */
@media (max-width: 991.98px) {
  #announcements .ann-slide {
    grid-template-columns: 1fr;
  }
}

/* Card must be allowed to shrink inside grid/flex contexts */
#announcements .ann-card {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* Media must not create intrinsic overflow */
#announcements .ann-media,
#announcements .ann-media img {
  width: 100%;
  max-width: 100%;
  display: block;
}

/* If any inner elements are flex, prevent "min-width:auto" overflow */
#announcements .ann-body,
#announcements .announcement-title,
#announcements .announcement-excerpt {
  min-width: 0;
}


/* Equal height per slide so the carousel doesn't jump */
#announcements .carousel-item {
  height: auto;
}

#announcements .ann-slide {
  align-items: stretch;
}

#announcements .ann-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Let the body take remaining height so label/title/excerpt align nicely */
#announcements .ann-body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}


/* ----------------------------------------
   ANNOUNCEMENTS (Bootstrap carousel): arrows + equal height
   Paste at END of CSS to win the cascade
---------------------------------------- */

/* Make carousel a positioning + stacking root */
#announcements .ann-carousel {
  position: relative;
  z-index: 1;
}

/* Keep slide contents aligned and same height */
#announcements .carousel-inner {
  overflow: hidden;
}

/* Bootstrap multi-item pattern: force equal height columns */
#announcements .carousel-item,
#announcements .carousel-item.active,
#announcements .carousel-item-next,
#announcements .carousel-item-prev {
  align-items: stretch;
}

/* Each column stretches */
#announcements .ann-slide-col {
  display: flex;
  align-items: stretch;
}

/* Each card fills column height */
#announcements .ann-card,
#announcements .ann-card-link {
  height: 100%;
}

/* Card internal layout so bottom actions align */
#announcements .ann-card {
  display: flex;
  flex-direction: column;
}

#announcements .ann-body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}

#announcements .ann-actions {
  margin-top: auto;
}


/* Make sure arrow icons are white */
#announcements .ann-nav svg,
#announcements .ann-nav svg * {
  stroke: #ffffff;
  fill: none;
}
/* =========================================================
   ANNOUNCEMENTS: FIX ARROWS + EQUAL HEIGHT (PASTE LAST)
   ========================================================= */

/* 1) Let the right column show controls; clip only the slide viewport */
#announcements .ann-right {
  overflow: visible !important;
}

#announcements .ann-carousel {
  position: relative;
  z-index: 1;
  padding-bottom: 56px;
  /* reserved space for arrows + dots */
}

/* Only the moving slides are clipped */
#announcements .carousel-inner {
  overflow: hidden;
}

#announcements .carousel-item .ann-slide {
  width: 100%;
  display: grid;
  gap: 18px;
  align-items: stretch;
}

/* Desktop: 3 columns */
@media (min-width: 992px) {
  #announcements .carousel-item .ann-slide {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Tablet/mobile: 1 column */
@media (max-width: 991.98px) {
  #announcements .carousel-item .ann-slide {
    grid-template-columns: 1fr;
  }
}

/* 3) Force equal height cards inside the grid */
#announcements .carousel-item .ann-card,
#announcements .carousel-item .ann-card-link {
  height: 100%;
}

#announcements .carousel-item .ann-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

#announcements .carousel-item .ann-body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

/* Keep text from causing weird overflow sizing */
#announcements .announcement-title,
#announcements .announcement-excerpt {
  min-width: 0;
}

/* Put actions consistently at the bottom without doing "margin-top:auto" on excerpt */
#announcements .ann-actions {
  margin-top: auto;
}

/* 4) ARROWS: style Bootstrap controls and place bottom-right */
#announcements .carousel-control-prev,
#announcements .carousel-control-next {
  position: absolute;
  bottom: 0;
  top: auto;
  width: 40px;
  height: 40px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  opacity: 0.85;
  transition: opacity 0.2s ease;

  z-index: 50;

  /* kill Bootstrap’s big gradient hit areas */
  background: transparent !important;
}

#announcements .carousel-control-prev {
  left: auto;
  right: 44px;
}

#announcements .carousel-control-next {
  right: 0;
}

#announcements .carousel-control-prev:hover,
#announcements .carousel-control-next:hover {
  opacity: 1;
}

/* Make the default icons visible on dark background */
#announcements .carousel-control-prev-icon,
#announcements .carousel-control-next-icon {
  filter: invert(1);
  opacity: 1;
}

/* If you’re using custom SVG inside the buttons, keep it white too */
#announcements .carousel-control-prev svg,
#announcements .carousel-control-next svg,
#announcements .carousel-control-prev svg *,
#announcements .carousel-control-next svg * {
  stroke: #ffffff;
  fill: none;
}

/* 5) Indicators sit centered under the cards (inside the reserved padding) */
#announcements .carousel-indicators.ann-indicators {
  position: absolute;
  left: 50%;
  bottom: 6px;
  transform: translateX(-50%);
  margin: 0;
}
/* ----------------------------------------
   ANNOUNCEMENTS: Bootstrap carousel, 1 mobile / 3 desktop
   Paste at END of CSS
---------------------------------------- */

#announcements .ann-carousel {
  position: relative;
  padding-bottom: 56px;
  /* room for arrows */
}

#announcements .carousel-inner {
  overflow: hidden;
}

/* Equal heights */
#announcements .carousel-item .row {
  align-items: stretch;
}

#announcements .carousel-item .col-12 {
  align-items: stretch;
}

#announcements .ann-card,
#announcements .ann-card-link {
  height: 100%;
}

/* Put Bootstrap arrows bottom-right */
#announcements .carousel-control-prev,
#announcements .carousel-control-next {
  top: auto;
  bottom: 0;
  width: 44px;
  height: 44px;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

#announcements .carousel-control-prev:hover,
#announcements .carousel-control-next:hover {
  opacity: 1;
}

/* Bottom-right positions */
#announcements .carousel-control-prev {
  left: auto;
  right: 52px;
}

#announcements .carousel-control-next {
  right: 0;
}

/* Ensure icons are visible (Bootstrap uses background-image icons) */
#announcements .carousel-control-prev-icon,
#announcements .carousel-control-next-icon {
  filter: none;
}
/* ----------------------------------------
   ANNOUNCEMENTS: global equal card height
---------------------------------------- */

#announcements .ann-card,
#announcements .ann-card-link {
  display: flex;
  flex-direction: column;
}

/* Body stretches, actions stay bottom-aligned */
#announcements .ann-body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}

#announcements .ann-actions {
  margin-top: auto;
}
.carousel-control-next-icon,
.carousel-control-prev-icon {
 width:1rem;

}
/* TEAM CAROUSEL: allow arrows to show, clip only the viewport */
.team-carousel {
  position: relative;
  overflow: visible;
  /* IMPORTANT: don't clip controls */
}

.team-viewport {
  overflow: hidden;
  /* clip cards here only */
  touch-action: pan-y;
  /* allow vertical scroll while we handle horizontal drag */
}
/* =========================================
   TEAM (Bootstrap carousel): arrows bottom-right
   Paste at END of CSS
========================================= */

/* IMPORTANT:
   - Do NOT clip the carousel container, only clip the viewport/inner
*/
#team .carousel {
  position: relative;
  overflow: visible !important;
  padding-bottom: 56px;
  /* space for arrows below */
}

/* Clip slides only (pick the one you actually use) */
#team .carousel-inner {
  overflow: hidden;
}

/* If your carousel is wrapped, also keep wrappers from clipping */
#team .team-carousel,
#team .team-carousel-wrapper {
  overflow: visible !important;
}

/* Move Bootstrap controls to bottom-right */
#team .carousel-control-prev,
#team .carousel-control-next {
  top: auto !important;
  bottom: 0 !important;
  width: 44px;
  height: 44px;

  z-index: 50;
 
  /* kill bootstrap gradients */
}

#team .carousel-control-prev {
  left: auto !important;
  right: 52px !important;
}

#team .carousel-control-next {
  right: 0 !important;
}

/* Make sure the icons are visible */
#team .carousel-control-prev-icon,
#team .carousel-control-next-icon {
  width: 1rem;
  height: 1rem;
  opacity: 1;
  filter: none;
  /* set to invert(1) only if on dark bg */
}

/* Desktop only (your CSS currently hides nav on <=900px / <=991px) */
@media (max-width: 991.98px) {

  #team .carousel-control-prev,
  #team .carousel-control-next {
    display: none !important;
  }
}

/* If you want them bottom-right instead (comment the top rules above and use this instead)
.team-control{
  top: auto;
  bottom: -10px;
  transform: none;
}
.team-control-prev{ right: 56px; left: auto; }
.team-control-next{ right: 0; left: auto; }
*/

/* Make sure icons are readable on your background */
.team-control .carousel-control-prev-icon,
.team-control .carousel-control-next-icon {
  filter: none;
  /* keep default unless you need inversion */
}

/* While dragging, avoid accidental selection */
.team-track.is-dragging {
  cursor: grabbing;
  user-select: none;
}
/* =========================================
   TEAM arrows (custom scroller using Bootstrap icons)
   Paste at END of css.css
========================================= */

#team .team-carousel {
  position: relative;
  overflow: visible !important;
}

/* give space under the viewport for the buttons */
#team .team-viewport {
  position: relative;
  overflow: hidden;
  /* keep cards clipped */
  padding-bottom: 56px;
  /* space for arrows */
}

/* force buttons to show even if something else hid them */
#team .team-control {
  display: flex !important;
  align-items: center;
  justify-content: center;

  position: absolute;
  bottom: 0;
  width: 44px;
  height: 44px;

  opacity: 1 !important;
  z-index: 9999;

  pointer-events: auto;
  background: transparent !important;
  border: 0;
}

/* bottom-right placement */
#team .team-control-next {
  right: 0;
}

#team .team-control-prev {
  right: 52px;
  left: auto !important;
}

/* Bootstrap icons are WHITE by default.
   If your team section background is light, they look "missing". */
#team .carousel-control-prev-icon,
#team .carousel-control-next-icon {
  width: 1rem;
  height: 1rem;
  opacity: 1;
  filter: invert(1);
  /* makes white icon black */
}

/* optional: hover feedback */
#team .team-control:hover {
  transform: translateY(-2px);
}
/* =========================================
   HERO rotator: prevent mobile right-side clipping
   Paste at VERY END of CSS to win cascade
========================================= */

@media (max-width: 900px) {

  /* Make the title line a real full-width block (no shrink-to-fit weirdness) */
  #hero .hero-title-main {
    display: block;
    width: 100%;
    max-width: 100%;
  }

  #hero .hero-line {
    width: 100%;
    max-width: 100%;
  }

  #hero .hero-rotate {
    width: 100%;
    max-width: 100%;
  }

  /* Stop clipping the typed word */
  #hero .hero-rotate-inner {
    overflow: visible !important;
    /* you no longer need cropping once using .hero-typing */
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0 0.15em;
    /* tiny safety gutter so glyphs never visually "kiss" the edge */
  }

  /* IMPORTANT: override your .hero-rotate-inner span { position:absolute; inset:0; ... } */
  #hero .hero-rotate-inner .hero-typing {
    position: relative !important;
    inset: auto !important;
    width: auto !important;
    max-width: 100%;
    display: inline-block;
    white-space: nowrap;
    /* keep single word on one line */
    overflow: visible !important;
    /* don't hide last pixels */
  }

  /* If any remaining selector is still pushing spans absolute, kill it here */
  #hero .hero-rotate-inner span.hero-typing {
    position: relative !important;
    inset: auto !important;
  }
}
/* =========================================
   LOCATIONS: mobile shows full map first, then offices
   Paste at END of CSS
========================================= */

@media (max-width: 767.98px) {

  /* Let the section grow naturally on mobile (not "map as background") */
  #locations.locations-section {
    min-height: auto;
  }

  #locations.locations-section .section-inner {
    height: auto;
    min-height: auto;
    gap: 22px;
    padding-bottom: 26px;
    /* breathing room at bottom */
  }

  /* Turn the map into a normal block with guaranteed space */
  #locations .locations-map-wrap {
    position: relative;
    /* was absolute */
    inset: auto;
    /* cancel absolute positioning */
    width: 100%;
    height: min(46vh, 420px);
    /* guarantees visible map area */
    margin-top: 8px;
    z-index: 1;
    pointer-events: none;
  }

  /* Make the image fill that reserved area cleanly */
  #locations .world-map-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    opacity: 0.9;
    transform: none;
  }

  /* Reduce/soften the fade overlay so it doesn't "wash out" the map on small screens */
  #locations .locations-map-wrap::after {
    background: linear-gradient(to bottom,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.12) 70%,
        rgba(255, 255, 255, 0.85) 100%);
  }

  /* Offices should come AFTER the map, not auto-pushed to bottom */
  #locations .office-locations {
    margin-top: 0;
    /* overrides your margin-top:auto */
    padding-top: 14px;
  }
}/* =========================================
   ANNOUNCEMENTS: hide carousel arrows on mobile
   Paste at VERY END of CSS
========================================= */
@media (max-width: 991.98px) {
  #announcements .carousel-control-prev,
  #announcements .carousel-control-next {
    display: none !important;
  }

}
/* Announcements: 3 visible on desktop, move by 1 via horizontal scroll */
#announcements .ann-carousel .carousel-inner.ann-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 2px;
  /* avoids accidental cutoffs */
}

/* Hide scrollbar (optional) */
#announcements .ann-carousel .carousel-inner.ann-track::-webkit-scrollbar {
  height: 0;
}

#announcements .ann-item {
  scroll-snap-align: start;
  flex: 0 0 100%;
}

/* Desktop: show 3 at once */
@media (min-width: 992px) {
  #announcements .ann-item {
    flex: 0 0 calc((100% - 32px) / 3);
    /* 2 gaps of 16px */
  }
}

/* ANN: Desktop slider layout */
#announcements .ann-slider {
  position: relative;
}

#announcements .ann-viewport {
  overflow: hidden;
  width: 100%;
}

#announcements .ann-track {
  display: flex;
  gap: 16px;
  will-change: transform;
  transition: transform 420ms ease;
}

#announcements .ann-track .ann-card {
  flex: 0 0 calc((100% - (16px * 2)) / 3);
  /* 3 cards, 2 gaps */
  max-width: calc((100% - (16px * 2)) / 3);
}

/* Buttons bottom right */
#announcements .ann-controls {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 14px;
}

#announcements .ann-btn {
  position: static;
  /* not overlaying */
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: transparent !important;
}

#annCarousel .carousel-control-prev.is-disabled,
#annCarousel .carousel-control-next.is-disabled {
  opacity: 0.35;
  pointer-events: none;
}
/* ANNOUNCEMENTS: show dot indicators on desktop too */
#announcements .ann-indicators {
  position: static;
  /* not overlaying the carousel */
  margin: 14px 0 0;
  /* spacing under the cards */
  justify-content: center;
  /* same feel as mobile */
  align-items: center;
  gap: 10px;
  padding: 0;
  display: flex !important;
  /* force visible even if something hides it */
}

/* if you previously hid indicators on desktop, override that */
@media (min-width: 992px) {
  #announcements .carousel-indicators {
    display: flex !important;
  }
}/* Desktop dots under announcements slider */
#annSlider .ann-desktop-indicators {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  margin-top: -30px;
}

#annSlider .ann-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 0;
  padding: 0;
  opacity: 0.35;
  background: white;
}

#annSlider .ann-dot.active {
  opacity: 1;
}
/* HERO rotating word: prevent descenders (g, y, p, q, j) from being clipped */
.hero-title,
.hero-title-main,
.hero-line,
.hero-rotate,
.hero-rotate-inner,
.hero-typing {
  overflow: visible !important;
}

/* Give the line box a little breathing room */
.hero-line {
  line-height: 1.08;

  /* protects descenders */
}

/* Make the typed word behave like text, not like a clipped box */
.hero-rotate,
.hero-rotate-inner,
.hero-typing {
  display: inline-block;
  vertical-align: baseline;

}

/* If you have any transform animations on these, this helps avoid fractional clipping */
.hero-typing {
  transform: translateZ(0);
}