/* ============================================================
   ATS — Component Styles
   All reusable UI components across the site
   ============================================================ */


/* ===========================================
   1. HEADER
   =========================================== */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 47px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--duration) var(--ease),
              box-shadow var(--duration) var(--ease);
}

.header-content{
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.site-header--transparent {
  background: transparent;
}

.site-header--dark {
  background: var(--c-navy-dark);
}

.site-header.is-scrolled {
  background: linear-gradient(to bottom, rgba(25, 25, 25, 0.85) 0%, rgba(25, 25, 25, 0.4) 35%, transparent 90%);
}

/* White header variant (Contact page) */
/* .site-header--white {
  background: var(--c-white);
}

.site-header--white.is-scrolled {
  background: var(--c-white);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
} */

.site-header--white .header__logo svg path {
  fill: var(--c-navy);
}

.site-header--white .header__nav-link {
  color: var(--c-navy);
}

.site-header--white .header__hamburger span {
  background: var(--c-navy);
}

.header__logo {
  flex-shrink: 0;
  z-index: 1001;
}

.header__logo svg {
  width: 107px;
  height: auto;
  float: left;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 171px;
  margin-left: -60px; /* Pull nav left to align with logo */
}

.header__nav-link {
  font-size: 13px;
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  color: var(--c-white);
  position: relative;
  padding: 0.25rem 0;
}

.header__nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--c-white);
  transition: width var(--duration) var(--ease);
}

.header__nav-link:hover::after,
.header__nav-link.is-active::after {
  width: 100%;
}

.site-header--white .header__nav-link::after {
  background: var(--c-navy);
}

.header__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 11px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
  padding: 0;
}

.header__hamburger span {
  display: block;
  width: 30px;
  height: 2px;
  background: var(--c-white);
}

.header__hamburger span:first-child {
  align-self: flex-end;
}

.header__hamburger span:nth-child(2) {
  align-self: flex-start;
}

/* Hide third span — design uses 2 lines */
.header__hamburger span:last-child {
  display: none;
}

/* ===========================================
   2. MENU OVERLAY
   =========================================== */

/* Close button inside overlay */
.menu-overlay__close {
  position: fixed;
  top: 60px;
  right: 74px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 11px;
  width: 44px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  z-index: 1000000;
}

.menu-overlay__close span {
  display: block;
  width: 30px;
  height: 2px;
  background: var(--c-white);
}

.menu-overlay__close span:first-child {
  align-self: flex-start;
}

.menu-overlay__close span:nth-child(2) {
  align-self: flex-end;
}

.menu-overlay__close:hover span {
  opacity: 0.7;
}

.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999999;
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--duration-slow) var(--ease);
}

.menu-overlay.is-open {
  pointer-events: auto;
  opacity: 1;
}

.menu-overlay__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.menu-overlay__shape{
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  width: 75%;
  height: 100%;
  transform: translateX(100%);
  transition: transform var(--duration-slow) var(--ease);
}

.menu-overlay__shape svg{
  height: 100%;
  float: right;
}

.menu-overlay__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  /* background: var(--c-navy);
  clip-path: polygon(66.5% 0, 100% 0, 100% 100%, 0% 100%); */
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  padding: 0 var(--space-xl) var(--space-2xl) 35%;
  transform: translateX(100%);
  transition: transform var(--duration-slow) var(--ease);
  z-index: 3;
}

.menu-overlay.is-open::after {
  transform: translateX(0);
}

.menu-overlay.is-open .menu-overlay__panel,
.menu-overlay.is-open .menu-overlay__shape {
  transform: translateX(0);
}

.menu-overlay__nav {
  text-align: right;
}

.menu-overlay__link {
  display: block;
  font-size: clamp(1.25rem, 2.5vw, 30px);
  line-height: clamp(1.5rem, 3.3vw, 40px);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  color: var(--c-white);
  padding-top: 6rem;
  transition: opacity var(--duration) var(--ease);
}

.menu-overlay__link:first-child {
  padding-top: 0;
}

.menu-overlay__link:hover {
  opacity: 0.7;
}

.menu-overlay__subnav {
  display: flex;
  margin-top: 3.75rem;
  flex-direction: column;
  flex-wrap: wrap;
  gap: var(--space-lg);
}

.menu-overlay__subnav_group {
  display: flex;
  justify-content: flex-end;
  gap: var(--space-lg);
  justify-content: flex-end;
}

.menu-overlay__sublink {
  font-size: clamp(0.75rem, 1.3vw, 16px);
  line-height: clamp(0.75rem, 1.3vw, 16px);
  font-weight: var(--fw-regular);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-white);
  transition: color var(--duration) var(--ease);
}

.menu-overlay__sublink:hover {
  color: var(--c-white);
}


/* ===========================================
   3. SEARCH OVERLAY
   =========================================== */
.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1100;
  background: rgba(0, 59, 117, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration) var(--ease);
}

.search-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.search-overlay__inner {
  width: 100%;
  max-width: 600px;
  padding: 0;
  border-bottom: 1px solid white;
  position: relative;
}

.search-overlay__input {
  flex: 1;
  font-size: 1.75rem;
  font-weight: var(--fw-regular);
  color: var(--c-white);
  background: transparent;
}

.search-overlay__input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.search-overlay__submit {
  color: var(--c-white);
  font-size: 1.25rem;
  padding: 0.5rem;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.search-overlay__close {
  position: absolute;
  top: var(--space-md);
  right: var(--space-lg);
  color: var(--c-white);
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
}


/* ===========================================
   4. PAGE HERO BANNER
   =========================================== */
.page-hero {
  height: 110vh;
  position: relative;
  min-height: 700px;
  display: flex;
  align-items: flex-start;
  padding: 0;
  overflow: hidden;
  background: var(--c-navy);
}

.page-hero-sm {
  height: 320px;
  min-height: 320px;
}

.page-hero-light{
  background: var(--c-white);
}

.page-hero__content {
  position: relative;
  z-index: 5;
  margin-top: 175px;
  width: 100%;
}

.page-hero__copy{
  max-width: 800px;
  margin-top: 140px;
  padding-left: 120px;
}

.page-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 20px;
}

.page-hero__breadcrumb a,
.page-hero__breadcrumb span {
  font-size: 11px;
  font-weight: var(--fw-regular);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--c-white);
}

.page-hero-light .page-hero__breadcrumb a,
.page-hero-light .page-hero__breadcrumb span {
  color: var(--c-navy);
}

.page-hero__breadcrumb a:hover {
  color: var(--c-white);
}

.page-hero-light .page-hero__breadcrumb a:hover {
  color: var(--c-blue);
}

.page-hero__breadcrumb .sep {
  margin: 0;
}

.page-hero__title {
  font-size: 30px;
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  color: var(--c-white);
  margin-bottom: var(--space-md);
}

.page-hero__subtitle {
  font-size: clamp(28px, 2vw + 5px, 35px);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  color: var(--c-white);
  line-height: 1.2;
  margin-bottom: 35px;
}

.page-hero__text {
  font-size: clamp(14px, 1.125vw, 18px);
  color: var(--c-white);
  line-height: 27px;
  max-width: 70%;
}

.page-hero-light .page-hero__title,
.page-hero-light .page-hero__subtitle,
.page-hero-light .page-hero__text {
  color: var(--c-navy);
}


/* ===========================================
   5. SECTION LABEL  ( / LABEL )
   =========================================== */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: var(--space-lg);
}

.section-label__slash {
  width: 2px;
  height: 42px;
  background: var(--c-navy);
  transform: rotate(42deg);
  display: inline-block;
  margin-top: -11px;
  margin-left: 12px;
}

.section-label__text {
  font-size: 16px;
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--c-navy);
}

/* White variant */
.section-label--white .section-label__slash {
  background: var(--c-white);
}

.section-label--white .section-label__text {
  color: var(--c-white);
}


/* ===========================================
   6. ANCHOR LINK (text + angular lines)
   =========================================== */
.anchor {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding-right: 1.2rem;
  padding-bottom: 0.5rem;
  line-height: 1em;
  color: var(--anchor-color, currentColor);
  transition: color var(--duration) var(--ease);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: var(--fw-bold);
  letter-spacing: 0.05em;
}

.anchor::before,
.anchor::after {
  content: '';
  position: absolute;
  height: 2px;
  background: var(--anchor-line-color, currentColor);
  transition: background var(--duration) var(--ease);
  border-radius: 7px;
}

.anchor::before {
  left: 0;
  right: 0.625rem;
  bottom: 0;
}

.anchor::after {
  left: calc(100% - 0.67rem);
  bottom: 0;
  width: 30px;
  transform: rotate(-50deg);
  transform-origin: left center;
  border-bottom-left-radius: 0;
}

.anchor:hover {
  color: var(--anchor-hover-color, var(--anchor-color, currentColor));
}

.anchor:hover::before,
.anchor:hover::after {
  background: var(--anchor-line-hover-color, var(--anchor-hover-color, var(--anchor-line-color, currentColor)));
}

.anchor.navy{
  --anchor-color: var(--c-navy);
  --anchor-line-color: var(--c-navy);
  --anchor-hover-color: var(--c-blue);
}


/* ===========================================
   7. PROJECT CARD
   =========================================== */
.project-card {
  display: block;
  position: relative;
  overflow: hidden;
}

.project-card__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.project-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease);
}

.project-card:hover .project-card__image img {
  transform: scale(1.05);
}

.project-card__tags {
  display: flex;
  gap: 1.5rem;
  margin-top: 20px;
  margin-left: 7px;
  flex-wrap: wrap;
}

.project-card__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 13px;
  line-height: 20px;
  font-weight: var(--fw-medium);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--c-dark);
}

.project-card__tag::before {
  content: '';
  display: inline-block;
  width: 1.5px;
  height: 18px;
  background: var(--c-gray);
  transform: rotate(42deg);
  margin-top: -6px;
}

.project-card__title {
  font-size: 22px;
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  color: var(--c-navy);
  margin-top: 13px;
}

.project-card:hover .project-card__title {
  color: var(--c-navy);
}

.clients .section-label__text{
  color: var(--c-dark);
}

.clients .section-label__slash{
  background: var(--c-dark);
}

.clients .anchor{
  --anchor-color: var(--c-light-gray);
  --anchor-line-color: var(--c-light-gray);
  --anchor-hover-color: var(--c-dark);
}
/* ===========================================
  8. CLIENT LOGOS
  =========================================== */

/* Marquee variant (homepage) */
.clients-marquee {
  overflow: hidden;
  position: relative;
  padding: var(--space-lg) 0;
}

.clients-marquee__track {
  display: flex;
  align-items: center;
  gap: var(--space-4xl);
  animation: marquee 10s linear infinite;
  width: max-content;
}

.clients-marquee__track.is-interactive {
  animation: none;
  will-change: transform;
  cursor: grab;
  user-select: none;
  touch-action: pan-y;
}

.clients-marquee__track.is-interactive.is-dragging {
  cursor: grabbing;
}

.clients-marquee__logo {
  width: auto;
  height: auto;
  max-width: 258px;
  max-height: 107px;
  display: block;
  flex-shrink: 0;
  transition: opacity var(--duration) var(--ease),
              filter var(--duration) var(--ease);
}

.clients-marquee__logo:hover {
  opacity: 1;
  filter: grayscale(0%);
}

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Grid variant (Clients & Testimonials, About) */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 90px 120px;
  align-items: center;
  justify-items: center;
  padding: 25px 0 0 50px;
}

.clients-grid__item {
  width: 100%;
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.clients-grid__item img,
.clients-grid__logo {
  width: auto;
  height: auto;
  max-width: min(100%, 190px);
  max-height: 72px;
  display: block;
}

/* ===========================================
  9. CTA DIAMOND BUTTON
  =========================================== */
.btn-diamond {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.6875rem;
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--c-navy);
  padding: 0.5rem 0;
  transition: color var(--duration) var(--ease);
}

.btn-diamond::after {
  content: '';
  width: 10px;
  height: 10px;
  border: 2px solid var(--c-navy);
  transform: rotate(45deg);
  transition: background var(--duration) var(--ease),
              border-color var(--duration) var(--ease);
}

.btn-diamond:hover::after {
  background: var(--c-navy);
}

.btn-diamond--white {
  color: var(--c-white);
}

.btn-diamond--white::after {
  border-color: var(--c-white);
}

.btn-diamond--white:hover::after {
  background: var(--c-white);
}

/* Skewed / parallelogram button — reusable across the site */
.btn-skew {
  display: inline-flex;
  align-items: center;
  height: 40px;
  line-height: 40px;
  padding: 0 48px;
  background: var(--c-navy);
  color: var(--c-white);
  font-size: 12px;
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  clip-path: polygon(36px 0, 100% 0, calc(100% - 36px) 100%, 0 100%);
  transition: opacity var(--duration) var(--ease);
  padding-top: 2px;
}

.btn-skew:hover {
  opacity: 0.85;
}

.btn-skew--clear{
  position: relative;
  background: transparent;
  color: var(--c-navy);
}
.btn-skew--clear::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  transform: skewX(-42deg);
  width: 78%;
  left: 11%;
  border: 2px solid var(--c-navy);
}

.btn-skew--white {
  background: var(--c-white);
  color: var(--c-navy);
}

/* Pink CTA label (top-right indicators on some sections) */
.cta-indicator {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--c-magenta);
  color: var(--c-white);
  font-size: 0.5625rem;
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.375rem 0.75rem;
  z-index: 5;
}

/* Outlined button — used on hero, forms, etc. */
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  border: 1.5px solid var(--c-navy);
  font-size: 0.75rem;
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-navy);
  position: relative;
  overflow: hidden;
  transition: color var(--duration) var(--ease),
              background var(--duration) var(--ease);
}

.btn-outline:hover {
  background: var(--c-navy);
  color: var(--c-white);
}

.btn-outline--white {
  border-color: var(--c-white);
  color: var(--c-white);
}

.btn-outline--white:hover {
  background: var(--c-white);
  color: var(--c-navy);
}

/* Solid button */
.btn-solid {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2.5rem;
  background: var(--c-navy);
  color: var(--c-white);
  font-size: 0.75rem;
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: background var(--duration) var(--ease);
}

.btn-solid:hover {
  background: var(--c-navy-dark);
}


/* ===========================================
  10. CONTENT BLOCK (image + text side-by-side)
  =========================================== */
.content-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.content-block--reverse {
  direction: rtl;
}

.content-block--reverse > * {
  direction: ltr;
}

.content-block__image {
  position: relative;
  overflow: hidden;
}

.content-block__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content-block__body {
}

.content-block__heading {
  font-size: 30px;
  line-height: 35px;
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  color: var(--c-dark);
  margin-bottom: 35px;
}

.content-block__text {
  font-size: 16px;
  line-height: 20px;
  color: var(--c-dark);
  margin-bottom: 20px;
  padding-right: 5%;
}

.content-block__text:last-child {
  margin-bottom: 0;
}


/* ===========================================
  11. STATS BAR / KEY FACTS
  =========================================== */
.stats-bar {
  display: flex;
  justify-content: center;
  gap: var(--space-4xl);
  padding: var(--space-md) 0 0;
}

.stats-bar--dark {
  background: var(--c-navy);
  color: var(--c-white);
}

.stat-item {
  text-align: center;
  flex: 1;
  max-width: 250px;
  position: relative;
}

.stat-item__icon {
  width: 105px;
  height: 105px;
  margin: 0 auto 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}

.stat-item__icon svg {
  max-width: 100%;
  max-height: 100%;
}

.stat-item__number {
  font-size: 35px;
  line-height: 35px;
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  color: var(--c-white);
  margin-bottom: 15px;
}

.stat-item__label {
  font-size: 16px;
  line-height: 1em;
  font-weight: var(--fw-regular);
  color: var(--c-white);
}

/* ===========================================
  11. PROJECT DETAILS BAR / KEY FACTS
  =========================================== */
.project-detail-bar {
  display: flex;
  justify-content: center;
  padding: 100px 0;
  background: var(--c-blue);
  color: var(--c-white);
}

.project-detail-bar__meta{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
.project-detail-bar__item {
  text-align: center;
  flex: 1;
  flex-direction: column;
  display: flex;
  align-items: center;
  max-width: 250px;
  position: relative;
}

.project-detail-bar__icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}

.project-detail-bar__icon svg {
  max-width: 100%;
  max-height: 100%;
}

.project-detail-bar__label{
  font-size: 30px;
  line-height: 1.2em;
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  color: var(--c-white);
  margin-bottom: 10px;
}

.project-detail-bar__value {
  font-size: 16px;
  line-height: 1em;
  font-weight: var(--fw-regular);
  color: var(--c-white);
}

/* Capabilities grid (Building page 2x3) */
.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  text-align: center;
}

.capability-item__title {
  font-size: 30px;
  line-height: 35px;
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  color: var(--c-navy);
  margin-bottom: 5px;
}

.capability-item__desc {
  font-size: clamp(0.875rem, 1.25vw, 1rem);
  color: var(--c-dark-gray);
  line-height: 1.5;
}


/* ===========================================
  12. TESTIMONIAL SLIDER
  =========================================== */
.testimonials-section {
  overflow: hidden;
}

.testimonials-slider {
  position: relative;
  overflow: visible;
}

.testimonials-slider__track {
  display: flex;
  transition: transform var(--duration-slow) var(--ease);
}

.testimonial-slide {
  min-width: 100%;
}

.testimonial-shape{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
}

.testimonial-shape svg{
  width: 160%;
  float: right;
  margin-right: -3%;
}

.testimonial-slide__card {
  position: relative;
  background: var(--c-white);
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.07);
}

.testimonial-slide__card-content {
  display: flex;
  align-items: center;
  gap: 85px;
  padding: 90px 80px;
}

.testimonial-slide__logo {
  flex-shrink: 0;
  width: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-slide__logo img {
  max-width: 100%;
  height: auto;
}

.testimonial-slide__body {
  flex: 1;
}

.testimonial-slide__quote {
  max-width: 765px;
  font-size: 22px;
  line-height: 31px;
  color: var(--c-dark);
  font-style: italic;
  margin-bottom: 40px;
}

.testimonial-slide__author {
  font-size: 22px;
  line-height: 1.3em;
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  color: var(--c-navy);
  margin-bottom: 5px;
}

.testimonial-slide__role {
  font-size: 16px;
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  color: var(--c-dark);
}

.testimonials-slider .slider-controls {
  margin-top: var(--space-lg);
}

/* Slider controls */
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  margin-top: var(--space-md);
}

.slider-arrow {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-blue);
  font-size: 1.25rem;
  cursor: pointer;
  transition: color var(--duration) var(--ease);
}

.slider-arrow:hover {
  color: var(--c-navy);
}

.slider-dots {
  display: flex;
  gap: 1.55rem;
}

.slider-dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--c-white);
  cursor: pointer;
  transition: background var(--duration) var(--ease);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.1);
}

.slider-dot.is-active {
  background: var(--c-navy);
}


/* ===========================================
  12b. PARALLAX BANNER
  =========================================== */
.parallax-banner {
  position: relative;
  height: 70vh;
  overflow: hidden;
}

.parallax-banner__img {
  position: absolute;
  top: -20%;
  left: 0;
  width: 100%;
  height: 140%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  will-change: transform;
}


/* ===========================================
  13. LIGHTBOX GALLERY
  =========================================== */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  background: var(--c-overlay-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration) var(--ease);
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox__image-wrap {
  position: relative;
  max-width: 85vw;
  max-height: 85vh;
}

.lightbox__image-wrap img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
}

.lightbox__close {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  color: var(--c-white);
  font-size: 2rem;
  cursor: pointer;
  z-index: 2001;
  background: none;
  border: none;
  line-height: 1;
}

.lightbox__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-white);
  font-size: 2rem;
  cursor: pointer;
  z-index: 2001;
  transition: opacity var(--duration) var(--ease);
}

.lightbox__arrow:hover {
  opacity: 0.7;
}

.lightbox__arrow--prev {
  left: var(--space-md);
}

.lightbox__arrow--next {
  right: var(--space-md);
}


/* ===========================================
  14. FOOTER
  =========================================== */
.site-footer {
  background: var(--c-navy-dark);
  padding: 70px 0;
  position: relative;
}

.site-footer .container{
  position: relative;
  z-index: 1;
}

.footer-shape{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.footer-shape svg{
  width: 200vw;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.footer-inner {
  display: grid;
  grid-template-columns: 31.25vw 1fr;
  align-items: stretch;
  gap: var(--space-xl);
}

.footer-cta__image {
  position: relative;
  overflow: hidden;
  min-height: 480px;
}

.footer-cta__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-cta__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 50px 48px;
  /* background: linear-gradient(to top, rgba(0, 0, 0, 0.55) 40%, transparent); */
}

.footer-cta__heading {
  font-size: 50px;
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  color: var(--c-white);
  line-height: 48px;
  margin-bottom: 35px;
}

/* Uses .btn-skew utility — no extra styles needed */

/* Right column */
.footer-right {
  display: flex;
  flex-direction: column;
  color: var(--c-white);
  justify-content: space-between;
}

.footer-info {
  display: flex;
  flex-direction: column;
}

.footer-info__row {
  display: flex;
  align-items: flex-start;
  padding: 35px 0;
  border-bottom: 2px solid rgba(255, 255, 255, 0.15);
}

.footer-info__row:first-child {
  padding-top: 0;
}

.footer-info__row:last-child {
  border-bottom: none;
  padding-bottom: 0;
  padding-top: 35px;
}

.footer-info__label {
  font-size: 13px;
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #C1C5CA;
  min-width: 170px;
  flex-shrink: 0;
  padding-top: 0.1em;
}

.footer-info__content {
  font-size: clamp(18px, 1.375vw, 22px);
  line-height: 31px;
  color: var(--c-white);
  flex: 1;
}

.footer-info__content svg{
  float: left;
  margin-right: 10px;
}

.footer-info__content a {
  color: var(--c-white);
  text-decoration: none;
}

.footer-info__content a:hover {
  opacity: 0.7;
}

.footer-offices {
  display: flex;
  justify-content: space-between;
  flex: 1;
}

.footer-social {
  display: flex;
  gap: var(--space-lg);
  align-items: center;
}

.footer-social__icon {
  width: 20px;
  height: 20px;
  color: var(--c-white);
  transition: opacity var(--duration) var(--ease);
}

.footer-social__icon:hover {
  opacity: 0.7;
}

/* Nav links */
.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, auto);
  justify-content: start;
  gap: 20px 0;
  padding-top: 50px;
}

.footer-nav__link {
  font-size: 13px;
  min-width: 170px;
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--c-white);
  transition: opacity var(--duration) var(--ease);
}

.footer-nav__link:hover {
  opacity: 0.7;
}

/* Copyright bar */
.footer-bottom {
  padding: var(--space-md) 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom__copy,
.footer-bottom__link {
  font-size: 12px;
  color: #C1C5CA;
}

.footer-bottom__link:hover {
  color: var(--c-white);
}

.footer-bottom__credit {
  font-size: 12px;
  color: #C1C5CA;
}

.footer-bottom__credit a {
  color: var(--c-white);
  text-decoration: underline;
}


/* ===========================================
   HERO SLIDER (Homepage specific component)
   =========================================== */
.hero-slider {
  position: relative;
  height: 110vh;
  min-height: 650px;
  overflow: hidden;
}

.hero-slider__track {
  display: flex;
  height: 100%;
  transition: transform var(--duration-slow) var(--ease);
}

.hero-slide {
  min-width: 100%;
  height: 100%;
  position: relative;
}

.hero-slide__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-slide__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide__bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(25, 25, 25, 0.4) 0%, rgba(25, 25, 25, 0.4) 5%, transparent 50%);
}

.hero-slide__bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(25,25,25,0.25);
}

.hero-slide__label {
  z-index: 2;
  --anchor-color: var(--c-white);
  --anchor-line-color: var(--c-white);
  --anchor-hover-color: rgba(255, 255, 255, 0.8);
  --anchor-line-hover-color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
}

.hero-slide__content {
  position: absolute;
  bottom: calc(10vh + 90px);
  left: 0;
  z-index: 3;
  width: 100%;
  display: flex;
  flex-direction: column;
  transition: 500ms ease;
}

.hero-slide__title {
  margin-top: 245px;
  font-size: clamp(2.5rem, 3.75vw, 3.75rem);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  color: var(--c-white);
  line-height: 1.067;
  margin-bottom: 35px;
}

.hero-slide__subtitle {
  font-size: 18px;
  font-weight: var(--fw-regular);
  color: var(--c-white);
  line-height: 1.444;
  max-width: 420px;
}

.hero-slider__controls {
  position: absolute;
  bottom: calc(10vh + 90px);
  right: var(--space-2xl);
  z-index: 5;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.1rem;
  transition: 500ms ease;
}

.hero-slider__controls .slider-dot {
  background: var(--c-white);
}

.hero-slider__controls .slider-dot.is-active {
  background: var(--c-blue-light);
}

.hero-slider__controls .slider-arrow {
  color: var(--c-white);
}

.hero-slider__shape{
  position: absolute;
  right: -17vw;
  bottom: 10vh;
  z-index: 1;
  width: 57.5%;
}

.hero-slider__shape svg{
  width: 100%;
  float: left;
}

@media (max-width: 768px) {
  .hero-slider::after {
    right: 15%;
    height: 120%;
  }

  .hero-slide__content {
    top: calc(var(--header-h) + var(--space-md));
    bottom: var(--space-xl);
    left: var(--space-md);
    width: calc(100% - (var(--space-md) * 2));
  }

  .hero-slide__label {
    top: 42%;
  }

  .hero-slider__controls {
    left: var(--space-md);
    right: auto;
    bottom: var(--space-lg);
  }
}

@media (max-width: 480px) {
  .hero-slider::after {
    display: none;
  }

  .hero-slide__content {
    left: var(--space-sm);
    width: calc(100% - (var(--space-sm) * 2));
    bottom: var(--space-lg);
  }

  .hero-slide__label {
    top: 38%;
  }

  .hero-slider__controls {
    left: var(--space-sm);
    right: auto;
    bottom: var(--space-md);
    gap: 0.75rem;
  }

  .hero-slider__controls .slider-arrow {
    display: none;
  }
}


/* ===========================================
   SERVICES SLIDER (Homepage)
   =========================================== */
.services-slider {
  position: relative;
  overflow: hidden;
  aspect-ratio: 17 / 9;
}

.services-slider__track {
  display: flex;
  height: 100%;
  transition: transform var(--duration-slow) var(--ease);
}

.service-slide {
  position: relative;
  min-width: 100%;
  height: 100%;
}

.service-slide__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.service-slide__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
  padding: var(--space-xl);
}

.service-slide__name {
  font-size: 35px;
  line-height: 1.4em;
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  color: var(--c-white);
  margin-bottom: 20px;
}

.service-slide__desc {
  font-size: 16px;
  color: var(--c-white);
  line-height: 1.4em;
  max-width: 500px;
  margin-bottom: var(--space-lg);
}

.service-slide__content .anchor{
  --anchor-color: var(--c-white);
  --anchor-line-color: var(--c-white);
  --anchor-hover-color: rgba(255, 255, 255, 0.8);
  --anchor-line-hover-color: rgba(255, 255, 255, 0.8);
}
.services-slider__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-sm) var(--space-2xl);
  transition: 500ms ease;
}

.services-slider__nav--prev:hover  .services-slider__arrow{
  margin-right: 10px;
  margin-left: -10px;
}

.services-slider__nav--next:hover  .services-slider__arrow{
  margin-right: -10px;
  margin-left: 10px;
}

.services-slider__nav--prev {
  left: 0;
}

.services-slider__nav--next {
  right: 0;
}

.services-slider__arrow {
  color: var(--c-white);
  font-size: 1.5rem;
  line-height: 1;
  transition: 500ms ease;
}

.services-slider__arrow svg{
  float: left;
}

.services-slider__nav-label {
  font-size: 16px;
  line-height: 1em;
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--c-white);
  margin-top: 3px;
}

.services-slider__nav:hover .services-slider__nav-label,
.services-slider__nav:hover .services-slider__arrow {
  opacity: 0.7;
}

/* ===========================================
   GALLERY GRID (Project Detail)
   =========================================== */
.gallery-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.gallery-grid__item {
  overflow: hidden;
  cursor: pointer;
  position: relative;
  border-radius: var(--radius-sm, 4px);
}

/* Row 1: Large left (67.19%) + Small right (32.81%) */
.gallery-grid__item:nth-child(1) {
  width: calc(67.19% - 15px);
  height: 526px;
}
.gallery-grid__item:nth-child(2) {
  width: calc(32.81% - 15px);
  height: 526px;
}

/* Row 2: Two equal (50% each) */
.gallery-grid__item:nth-child(3),
.gallery-grid__item:nth-child(4) {
  width: calc(50% - 15px);
  height: 391px;
}

/* Row 3: Three equal small (33.33% each) */
.gallery-grid__item:nth-child(5),
.gallery-grid__item:nth-child(6),
.gallery-grid__item:nth-child(7) {
  width: calc(33.333% - 20px);
  height: 256px;
}

/* Row 4: Small left (32.81%) + Large right (67.19%) - reverse of row 1 */
.gallery-grid__item:nth-child(8) {
  width: calc(32.81% - 15px);
  height: 526px;
}
.gallery-grid__item:nth-child(9) {
  width: calc(67.19% - 15px);
  height: 526px;
}

.gallery-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease);
}

.gallery-grid__item:hover img {
  transform: scale(1.05);
}


/* ===========================================
   FILTER TABS (Projects page)
   =========================================== */
.filter-bar {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: 60px 35px 25px;
}

.filter-tabs {
  display: flex;
  align-items: center;
  gap: clamp(0.5rem, 1.2vw, 1.5rem);
  flex: 1 1 auto;
  min-width: 0;
  flex-wrap: wrap;
}

.filter-tab {
  font-size: 13px;
  font-weight: var(--fw-medium);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--c-dark);
  padding: 13px 0.625rem;
  border: 1px solid transparent;
  background: transparent;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  position: relative;
  transition: 300ms ease;
}

.filter-tab::after {
  content: none;
}

.filter-tab:hover,
.filter-tab.is-active {
  color: var(--c-navy);
}

.filter-tab.is-active {
  border-color: transparent;
  background: transparent;
  color: var(--c-navy);
  padding-left: 1.25rem;
  padding-right: 1.5rem;
  font-weight: var(--fw-bold);
  position: relative;
}

.filter-tab.is-active::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--c-navy);
  transform: skewX(-42deg) translateX(-3%) translateY(-1px);
  pointer-events: none;
}

.filter-search {
  margin-left: auto;
  flex: 0 0 auto;
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  color: var(--c-dark-gray);
  font-size: 1.125rem;
  transition: color var(--duration) var(--ease);
}

.filter-search:hover {
  color: var(--c-navy);
}


/* ===========================================
   TEAM MEMBER CARD (Leadership page)
   =========================================== */
.team-card {
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--c-light-gray);
}

.team-card__image {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  margin-bottom: var(--space-md);
  background: var(--c-light-gray);
}

.team-card__image img {
  display: block;
  width: 100%;
  height: 100%;

  transition: opacity var(--duration) var(--ease),
              filter var(--duration) var(--ease);
}

.team-card__image-main {
  position: relative;
  z-index: 1;
}

.team-card__image-main img{
  object-fit: cover;
  filter: grayscale(100%);
}

.team-card__image-hover {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0;
}

.team-card:hover .team-card__image-main {
  opacity: 0;
}

.team-card:hover .team-card__image-hover {
  opacity: 1;
}

.team-card__body {
  padding-right: 13%;
}

.team-card__name {
  font-size: 22px;
  line-height: 35px;
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  color: var(--c-navy);
  margin-bottom: 0;
}

.team-card__role {
  display: block;
  font-size: 16px;
  line-height: 22px;
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  color: var(--c-dark);
  margin-bottom: 45px;
}

.team-card__bio {
  font-size: 16px;
  line-height: 20px;
  color: var(--c-dark);
  margin-bottom: clamp(1.3rem, 2.2vw, 2.1rem);
}

.team-card__interests {
  font-size: 16px;
  line-height: 20px;
  color: var(--c-dark);
}

.team-card__label {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 13px;
  line-height: 20px;
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--c-light-gray);
  margin-bottom: 0.9rem;
}

.team-card__label::before {
  content: '';
  display: inline-block;
  width: 1.5px;
  height: 18px;
  background: var(--c-light-gray);
  transform: rotate(42deg);
  margin-top: -6px;
}

.team-card__interest-label {
  display: none;
}

/* CEO featured card (larger) */
.team-card--featured {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
  padding-bottom: var(--space-xl);
}

.team-card--featured .team-card__image {
  aspect-ratio: 16 / 10;
}


/* ===========================================
   AWARD ENTRY (Awards page — zigzag)
   =========================================== */
.award-entry {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  padding: var(--space-2xl) 0;
  border-bottom: 1px solid var(--c-light-gray);
  padding-left: 0;
  padding-right: 10%;
}

.award-entry:first-child {
  padding-top: 0;
}

.award-entry:last-child{
  padding-bottom: 0;
  border-bottom: 0 none;
}

.award-entry:nth-child(even) {
  direction: rtl;
  padding-left: 10%;
  padding-right: 0;
}

.award-entry:nth-child(even) > * {
  direction: ltr;
}

.award-entry__image {
  overflow: hidden;
}

.award-entry__image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 16 / 9;
}

.award-entry__body {}

.award-entry__title {
  font-size: 22px;
  line-height: 28px;
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  color: var(--c-navy);
  margin-bottom: 10px;
}

.award-entry__org {
  font-size: 16px;
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  color: var(--c-dark);
}

.award-entry__logo {
  display: block;
  max-height: 65px;
  height: auto;
  margin-top: 20px;
}

.award-entry__badge {
  max-height: 50px;
  width: auto;
}


/* ===========================================
   CONTACT FORM
   =========================================== */
.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.contact-form__group {
  position: relative;
}

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

.contact-form__input,
.contact-form__select,
.contact-form__textarea {
  width: 100%;
  padding: 0.75rem 0;
  border: none;
  border-bottom: 1px solid var(--c-light-gray);
  font-size: 0.9375rem;
  font-weight: var(--fw-regular);
  color: var(--c-text);
  background: transparent;
  transition: border-color var(--duration) var(--ease);
}

.contact-form__input:focus,
.contact-form__select:focus,
.contact-form__textarea:focus {
  border-bottom-color: var(--c-navy);
}

.contact-form__input::placeholder,
.contact-form__textarea::placeholder {
  color: var(--c-gray);
}

.contact-form__textarea {
  min-height: 100px;
  resize: vertical;
}

.contact-form__select {
  appearance: none;
  cursor: pointer;
}

.contact-form__footer {
  grid-column: 1 / -1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: var(--space-md);
  margin-top: var(--space-sm);
}

.contact-form__privacy {
  font-size: 0.75rem;
  color: var(--c-dark-gray);
}

.contact-form__privacy a {
  color: var(--c-blue);
  text-decoration: underline;
}


/* ===========================================
   MAP SECTION
   =========================================== */
.map-section {
  position: relative;
}

.map-tabs {
  position: absolute;
  top: var(--space-md);
  left: var(--space-lg);
  z-index: 10;
  display: flex;
  gap: 0.5rem;
}

.map-tab {
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  border-radius: 2px;
  transition: background var(--duration) var(--ease),
              color var(--duration) var(--ease);
}

.map-tab--active {
  background: var(--c-navy);
  color: var(--c-white);
}

.map-tab:not(.map-tab--active) {
  background: var(--c-white);
  color: var(--c-navy);
  border: 1px solid var(--c-light-gray);
}

.map-embed {
  width: 100%;
  height: 500px;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
}


/* ===========================================
   UTILITIES
   =========================================== */

/* Diagonal corner clip — cuts top-left & bottom-right */

.clip-diagonal {
  clip-path: polygon(30px 0, 100% 0, 100% calc(100% - 33px), calc(100% - 30px) 100%, 0 100%, 0 33px);
}

.clip-diagonal-md {
  clip-path: polygon(43px 0, 100% 0, 100% calc(100% - 47px), calc(100% - 43px) 100%, 0 100%, 0 47px);
}

.clip-diagonal-lg {
  clip-path: polygon(55px 0, 100% 0, 100% calc(100% - 61px), calc(100% - 55px) 100%, 0 100%, 0 61px);
}