html, body {
  max-width: 100%;
  overflow-x: hidden;
}
   :root {
     /* --gold: #C9A84C;*/
      --gold:rgb(254 206 0);
      --gold-light:rgb(254 206 0);
      --gold-dim: rgb(254 206 0);
      --ink: #0A0A08;
      --cream: #F5F0E8;
      --warm-white: #FAF8F4;
      --grey-1: #1A1915;
      --grey-2: #252420;
      --grey-3: #353330;
      --text-muted: #8A8680;
      --text-body: #C8C4BC;
    }

    .hero-video {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

/* IMPORTANT: all content sections above video */
.about,
.leadership,
.services,
.numbers,
.projects,
.testimonials,
.clients-who,
.cta-section,
footer {
  position: relative;
  z-index: 5;
}
    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }

    body {
      width: 100%;

      background: var(--ink);
      color: var(--text-body);
      font-family: 'DM Sans', sans-serif;
      font-weight: 600;
      overflow-x: hidden;
      cursor: none;
    }

    /* ── CUSTOM CURSOR ── */
    .cursor-dot {
      position: fixed;
      width: 8px; height: 8px;
      background: var(--gold);
      border-radius: 50%;
      pointer-events: none;
      z-index: 99999;
      transform: translate(-50%, -50%);
      transition: transform 0.1s;
    }
    .cursor-ring {
      position: fixed;
      width: 36px; height: 36px;
      border: 1px solid rgba(201,168,76,0.5);
      border-radius: 50%;
      pointer-events: none;
      z-index: 99998;
      transform: translate(-50%, -50%);
      transition: all 0.12s ease;
    }

    /* ── NOISE OVERLAY ── */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 99997;
      opacity: 0.6;
    }

    /* ── NAVBAR ── 
    .navbar {
      position: fixed;
      top: 0; left: 0; right: 0;
      height: 80px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 60px;
      z-index: 9999;
      transition: all 0.5s ease;
    }
    .navbar.scrolled {
      background: rgba(10,10,8,0.92);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(201,168,76,0.12);
    }
    .nav-logo img {
       height: 30px;
    }
    
    .nav-links {
      display: flex;
      gap: 40px;
      list-style: none;
     
    }
    .nav-links a {
      color: var(--text-muted);
      text-decoration: none;
      font-size: 13px;
      font-weight: 400;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      transition: color 0.3s;
      position: relative;
    }
    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -3px; left: 0;
      width: 0; height: 1px;
      background: var(--gold);
      transition: width 0.3s;
    }
    .nav-links a:hover { color: var(--gold); }
    .nav-links a:hover::after { width: 100%; }
    .nav-cta {
      padding: 10px 28px;
      border: 1px solid var(--gold);
      color: var(--gold);
      text-decoration: none;
      font-size: 12px;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      transition: all 0.3s;
      font-family: 'DM Sans', sans-serif;
    }
    .nav-cta:hover { background: var(--gold); color: var(--ink); }
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
    }

   
    .hamburger span { width: 24px; height: 1px; background: var(--cream); transition: 0.3s; }
*/
/* NAVBAR */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  z-index: 9999;
  transition: all 0.4s ease;
}

.navbar.scrolled {
  background: rgba(10,10,8,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201,168,76,0.12);
}

.nav-logo img {
  height: 45px;
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  position: relative;
  transition: 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: 0.3s;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-links a:hover::after {
  width: 100%;
}
/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 24px;
  height: 1px;
  background: var(--cream);
  transition: 0.3s;
}

/* MOBILE */
@media (max-width: 1024px) {

  .navbar {
    padding: 0 60px;
  }
/*
  .hamburger {
    display: flex;
  }*/

  .nav-links {
    position: fixed;
    top: 80px;
    right: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: #0a0a08;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    transition: 0.4s ease;
  }

  .nav-links.open {
    right: 0;
  }
}

    /* ── HERO ── */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      overflow: hidden;
    }
    .hero-bg {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 80% 60% at 70% 40%, rgba(201,168,76,0.06) 0%, transparent 70%),
        linear-gradient(180deg, #0A0A08 0%, #12110E 100%);
    }
    .hero-grid {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
      background-size: 80px 80px;
      mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
    }
    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 1300px;
      margin: 0 auto;
      padding: 140px 60px 100px;
      width: 100%;
    }
    .hero-eyebrow {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 40px;
    }
    .hero-eyebrow-line { width: 48px; height: 1px; background: var(--gold); }
    .hero-eyebrow span {
      font-size: 12px;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--gold);
    }
    .hero-title {
      
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(64px, 9vw, 120px);
      font-weight: 600;
      line-height: 0.95;
      color: var(--cream);
      margin-bottom: 50px;
    }
    .hero-title .word-gold { color: var(--gold); font-style:normal ; }
    .hero-title .word-outline { -webkit-text-stroke: 1px rgba(245,240,232,0.3); color: transparent; }
    .hero-sub {
      max-width: 480px;
      font-size: 16px;
      line-height: 1.8;
      color: var(--text-muted);
      margin-bottom: 60px;
    }
    .hero-actions { display: flex; gap: 24px; align-items: center; }
    .btn-primary {
      padding: 18px 44px;
      background: var(--gold);
      color: var(--ink);
      text-decoration: none;
      font-size: 12px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      font-weight: 500;
      transition: all 0.3s;
      display: inline-block;
    }
    .btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
    .btn-ghost {
      display: flex;
      align-items: center;
      gap: 12px;
      color: var(--cream);
      text-decoration: none;
      font-size: 13px;
      letter-spacing: 0.08em;
      transition: color 0.3s;
    }
    .btn-ghost svg { transition: transform 0.3s; }
    .btn-ghost:hover { color: var(--gold); }
    .btn-ghost:hover svg { transform: translateX(6px); }
    .hero-stats {
      position: absolute;
      right: 60px;
      bottom: 100px;
      display: flex;
      flex-direction: column;
      gap: 32px;
    }
    .hero-stat-item { text-align: right; }
    .hero-stat-num {
      font-family: "Source Serif 4", serif;
      font-size: 42px;
      font-weight: 600;
      color: var(--cream);
      line-height: 1;
    }
    .hero-stat-num span { color: var(--gold); }
    .hero-stat-label {
      font-size: 11px;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-top: 4px;
    }
    .hero-scroll {
      position: absolute;
      bottom: 48px;
      left: 60px;
      display: flex;
      align-items: center;
      gap: 16px;
    }
    .hero-scroll-line {
      width: 40px; height: 1px;
      background: var(--gold);
      transform-origin: left;
      animation: scrollPulse 2.5s ease infinite;
    }
    @keyframes scrollPulse {
      0%, 100% { transform: scaleX(1); opacity: 1; }
      50% { transform: scaleX(0.5); opacity: 0.5; }
    }
    .hero-scroll span { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); }*/


 /*
.video-wrapper {
  position: relative; /* required for absolute video positioning 
  width: 100%;
  height: 100vh; /* FULL SCREEN HEIGHT
  overflow: hidden;
  margin: 0;
  padding: 0;
   z-index: 1;
}

.bg-video {
 position: absolute;
 top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit:cover;
   object-position: center center;   /* most important 
  z-index: 0;
}
*/
.video-wrapper {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1;
}

.video-content {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  padding: 0;
  margin: 0;
}
*/
/* DESKTOP & MOBILE SWITCH */
.desktop-video {
  display: block;
}

.mobile-video {
  display: none;
}

@media (max-width: 1500px) {
  
  
  /* Switch Videos */
  .desktop-video {
    display: none;
  }

  .mobile-video {
    display: block;
  }

  body {
    margin: 0;
    padding: 0;
  }

  .video-wrapper {
    height: 100vh;
    width: 100%;
    padding: 0;
    margin: 0;
  }

  .bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

    /* ── SECTION COMMONS ── */
    .section-tag {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      font-size: 11px;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 24px;
    }
    .section-tag::before { content: ''; width: 32px; height: 1px; background: var(--gold); }
    .section-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(40px, 5vw, 64px);
      font-weight: 600;
      color: var(--cream);
      line-height: 1.1;
    }
    .section-title em {font-style: normal; font-family: 'Cormorant Garamond', serif; color: var(--gold); font-size: 30px; }




    /* ── ABOUT ── */
    .about { padding: 160px 60px; max-width: 1300px; margin: 0 auto;  }
    .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 120px; align-items: start; }
    .about-left .section-tag { margin-bottom: 32px; }
    .about-desc { font-size: 18px; line-height: 1.85; color: var(--text-body); margin-top: 32px; }
    .about-desc + .about-desc { margin-top: 20px; color: var(--text-muted); }
    .about-right { padding-top: 60px; }
    .about-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
    .about-card {
      background: var(--grey-1);
      padding: 36px 28px;
      border: 1px solid rgba(201,168,76,0.08);
      transition: all 0.4s ease;
      position: relative;
      overflow: hidden;
    }
    .about-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 2px; height: 0;
      background: var(--gold);
      transition: height 0.4s ease;
    }
    .about-card:hover { background: var(--grey-2); }
    .about-card:hover::before { height: 100%; }
    .about-card-num {
      font-family: "Source Serif 4", serif;
      font-size: 48px;
      font-weight: 300;
      color: var(--gold);
      line-height: 1;
      margin-bottom: 16px;
    }
    .about-card p { font-size: 14px; line-height: 1.7; color: var(--text-body); }*/

    /* ── LEADERSHIP ── */
   

    .leadership {
       margin-top: 0;
      background: var(--grey-1);
      padding: 160px 60px;
      border-top: 1px solid rgba(201,168,76,0.08);
      border-bottom: 1px solid rgba(201,168,76,0.08);
    }
    .leadership-inner { max-width: 1300px; margin: 0 auto; padding:20px 0px;}
    .leadership-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 80px; }
    .leader-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
    .leader-card-item {
      background: var(--ink);
      padding: 60px 44px;
      border: 1px solid rgba(201,168,76,0.06);
      position: relative;
      overflow: hidden;
      transition: all 0.5s ease;
    }
    .leader-card-item::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
      transform: scaleX(0);
      transition: transform 0.5s ease;
    }
    .leader-card-item:hover::after { transform: scaleX(1); }
    .leader-card-item:hover { background: var(--grey-1); }
    .leader-img-wrap {
      width: 80px; height: 80px;
      border-radius: 50%;
      overflow: hidden;
      border: 1px solid rgba(201,168,76,0.3);
      margin-bottom: 28px;
      background: var(--grey-2);
    }
    .leader-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
    .leader-role { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
    .leader-name { font-family: 'Cormorant Garamond', serif; font-size: 30px; font-weight: 500; color: var(--cream); margin-bottom: 20px; line-height: 1.2; }
    .leader-bio { font-size: 14px; line-height: 1.8; color: var(--text-muted); margin-bottom: 32px; }
    .leader-link {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: var(--gold);
      text-decoration: none;
      font-size: 12px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      transition: gap 0.3s;
    }
    .leader-link:hover { gap: 16px; }

/* ===== TABLET ===== */
@media (max-width:1024px){
  .leader-cards{
    grid-template-columns: repeat(2,1fr);
  }
}

/* ===== MOBILE ===== */
@media (max-width:640px){

  .leadership{
    padding:70px 20px;
  }

  .leader-cards{
    grid-template-columns:1fr;
    gap:20px;
  }

  .leader-card-item{
    text-align:center;
  }

  .leader-img-wrap{
    margin-left:auto;
    margin-right:auto;
  }

  .leader-link{
    justify-content:center;
  }

}

  /* ── HOW LEADERSHIP DRIVES RESULTS ── */
    .how-leadership {
      padding: 160px 60px;
      max-width: 1300px;
      margin: 0 auto;
    }
    .how-leadership-header {
      text-align: center;
      margin-bottom: 80px;
    }
    .how-leadership-header .section-tag { justify-content: center; }
    .how-leadership-header .section-tag::before { display: none; }
    .how-leadership-header p {
      font-size: 16px;
      color: var(--text-muted);
      margin-top: 20px;
      line-height: 1.8;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }
    .hldr-cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
      margin-bottom: 2px;
    }
    .hldr-card {
      background: var(--grey-1);
      border: 1px solid rgba(201,168,76,0.08);
      padding: 44px 36px;
      position: relative;
      overflow: hidden;
      transition: all 0.4s ease;
      display: flex;
      flex-direction: column;
    }
    .hldr-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
      transform: scaleX(0);
      transition: transform 0.4s ease;
    }
    .hldr-card:hover { background: var(--grey-2); border-color: rgba(201,168,76,0.2); }
    .hldr-card:hover::before { transform: scaleX(1); }
    .hldr-card-num {
      position: absolute; top: 24px; right: 28px;
      font-family: 'Cormorant Garamond', serif;
      font-size: 13px; color: rgba(201,168,76,0.3); letter-spacing: 0.1em;
    }
    .hldr-icon {
      width: 52px; height: 52px;
      border: 1px solid rgba(201,168,76,0.3);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      color: var(--gold); margin-bottom: 28px; flex-shrink: 0; transition: all 0.3s;
    }
    .hldr-card:hover .hldr-icon { background: var(--gold); color: var(--ink); }
    .hldr-card-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 22px; color: var(--cream); line-height: 1.3; margin-bottom: 10px;
    }
    .hldr-card-by {
      font-size: 12px; letter-spacing: 0.1em; color: var(--gold);
      margin-bottom: 20px;
      padding-bottom: 20px;
      border-bottom: 1px solid rgba(201,168,76,0.1);
    }
    .hldr-card-by span { color: var(--text-muted); }
    .hldr-card-desc {
      font-size: 14px;
      line-height: 1.85;
      color: var(--text-muted);
      margin-bottom: 20px;
    }
    .hldr-card-list {
      list-style: none;
      margin-top: auto;
    }
    .hldr-card-list li {
      font-size: 13px;
      line-height: 2;
      color: var(--text-body);
      padding-left: 16px;
      position: relative;
    }
    .hldr-card-list li::before {
      content: '—';
      position: absolute;
      left: 0;
      color: rgba(201,168,76,0.5);
      font-size: 10px;
    }
    .hldr-pills {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 10px;
    }
    .hldr-pill {
      background: var(--ink);
      border: 1px solid rgba(201,168,76,0.06);
      padding: 36px 32px;
      display: flex; align-items: flex-start; gap: 24px;
      transition: all 0.4s ease;
      margin-top: 10px;
    }
    .hldr-pill:hover { background: var(--grey-1); border-color: rgba(201,168,76,0.18); }
    .hldr-pill-icon {
      width: 44px; height: 44px;
      border: 1px solid rgba(201,168,76,0.25);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      color: var(--gold); flex-shrink: 0; margin-top: 2px; transition: all 0.3s;
    }
    .hldr-pill:hover .hldr-pill-icon { background: var(--gold); color: var(--ink); }
    .hldr-pill-text { display: flex; flex-direction: column; gap: 8px; }
    .hldr-pill-text strong { font-size: 15px; color: var(--cream); font-weight: 500; line-height: 1.4; display: block; }
    .hldr-pill-text span { font-size: 13px; color: var(--text-muted); line-height: 1.8; display: block; }
    @media (max-width: 1100px) {
      .hldr-cards { grid-template-columns: 1fr; }
      .hldr-pills { grid-template-columns: 1fr; }
    }
    @media (max-width: 768px) {
      .how-leadership { padding: 80px 24px; }
      .how-leadership-header { margin-bottom: 48px; }
      .hldr-card { padding: 32px 24px; }
      .hldr-pill { padding: 28px 20px; gap: 16px; }
      .hldr-card-title { font-size: 20px; }
      .hldr-card-desc { font-size: 13px; }
      .hldr-pill-text strong { font-size: 14px; }
    }
    @media (max-width: 480px) {
      .hldr-pill { flex-direction: column; gap: 12px; }
    }

    /* ── REVEAL ANIMATIONS - use visibility so layout is preserved ── */
    .reveal, .reveal-left, .reveal-right {
      opacity: 0;
    }
    /* fallback: if JS fails, show everything */
    .js-loaded .reveal,
    .js-loaded .reveal-left,
    .js-loaded .reveal-right {
      /* GSAP will handle these */
    }



    /* ── SERVICES ── */
    .services {
      background: var(--grey-1);
      padding: 160px 60px;
      border-top: 1px solid rgba(201,168,76,0.08);
    }
    .services-inner { max-width: 1300px; margin: 0 auto; }
    .services-tabs {
      display: flex;
      gap: 0;
      margin: 60px 0;
      border-bottom: 1px solid rgba(201,168,76,0.15);
    }
    .services-tab {
      padding: 16px 36px;
      font-size: 12px;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--text-muted);
      cursor: pointer;
      border-bottom: 2px solid transparent;
      margin-bottom: -1px;
      transition: all 0.3s;
    }
    .services-tab.active { color: var(--gold); border-bottom-color: var(--gold); }
    .services-panel { display: none; }
    .services-panel.active { display: block; }

    /* ── SERVICE IMAGE BANNER ── */
    .service-img-banner {
      width: 100%;
      height: 280px;
      position: relative;
      overflow: hidden;
      margin-bottom: 40px;
      border: 1px solid rgba(201,168,76,0.08);
    }
    .service-img-banner img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: grayscale(30%) brightness(0.7);
      transition: transform 0.6s ease, filter 0.6s ease;
    }
    .service-img-banner:hover img {
      transform: scale(1.04);
      filter: grayscale(0%) brightness(0.8);
    }
    .service-img-banner-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(10,10,8,0.5) 0%, rgba(201,168,76,0.08) 100%);
    }
    .service-img-banner-label {
      position: absolute;
      bottom: 24px;
      left: 28px;
      font-family: 'Cormorant Garamond', serif;
      font-size: 22px;
      font-weight: 600;
      color: var(--cream);
      letter-spacing: 0.05em;
    }
    .service-img-banner-label span {
      display: block;
      font-size: 11px;
      font-family: 'DM Sans', sans-serif;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 6px;
    }

    .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
    .service-card {
      background: var(--ink);
      padding: 48px 36px;
      border: 1px solid rgba(201,168,76,0.06);
      transition: all 0.4s ease;
      position: relative;
      overflow: hidden;
    }
    .service-card:hover { background: var(--grey-2); border-color: rgba(201,168,76,0.2); }
    .service-card:hover .service-icon { background: var(--gold); color: var(--ink); }
    .service-icon {
      width: 52px; height: 52px;
      border: 1px solid rgba(201,168,76,0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 28px;
      color: var(--gold);
      transition: all 0.3s;
    }
    .service-title { font-family: 'Cormorant Garamond', serif; font-size: 22px; color: var(--cream); margin-bottom: 16px; line-height: 1.3; }
    .service-items { list-style: none; }
    .service-items li { font-size: 13px; line-height: 2; color: var(--text-muted); padding-left: 16px; position: relative; }
    .service-items li::before { content: '—'; position: absolute; left: 0; color: rgba(201,168,76,0.4); font-size: 10px; }

    /* ── NUMBERS ── */
    .numbers { padding: 160px 60px; max-width: 1300px; margin: 0 auto; }
    .numbers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 80px; }
    .number-item {
      background: var(--grey-1);
      padding: 56px 44px;
      border: 1px solid rgba(201,168,76,0.06);
      transition: all 0.4s;
    }
    .number-item:hover { background: var(--grey-2); border-color: rgba(201,168,76,0.2); }
    .number-val { font-family:"Source Serif 4", serif; font-size: clamp(30px, 3vw, 40px); font-weight: 300; color: var(--cream); line-height: 1; margin-bottom: 16px; }
    .number-val span { color: var(--gold); }
    .number-label { font-size: 13px; line-height: 1.7; color: var(--text-muted); }

    /* ── PROJECTS ── */
.project-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  width: 120px;
  height: 120px;
  object-fit: contain;

  filter: grayscale(100%) brightness(1.1); /* black & white */
  opacity: 0.85;

  pointer-events: none;
  transition: transform 0.4s ease, opacity 0.4s ease, filter 0.4s ease;
}

.project-card:hover .project-logo {
  transform: translate(-50%, -65%) scale(1.05);
  opacity: 1;
  filter: grayscale(0%) brightness(1); /* full color */
}
/* keep text above overlay */
.project-name,
.project-num {
  position: relative;
  z-index: 2;
}
    .projects { background: var(--grey-1); padding: 160px 60px; border-top: 1px solid rgba(201,168,76,0.08); }
    .projects-inner { max-width: 1300px; margin: 0 auto; }
    .projects-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 2px; margin-top: 80px; }
    .project-card {
      background: var(--ink);
      border: 1px solid rgba(201,168,76,0.06);
      padding: 36px 24px;
      min-height: 180px;
      display: flex;
      align-items: flex-end;
      position: relative;
      overflow: hidden;
      cursor: pointer;
      transition: all 0.4s ease;
    }
    .project-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(201,168,76,0.08), transparent);
      opacity: 0;
      transition: opacity 0.4s;
    }
    .project-card:hover::before { opacity: 1; }
    .project-card:hover { border-color: rgba(201,168,76,0.3); }
    .project-num { position: absolute; top: 20px; right: 20px; font-family: 'Cormorant Garamond', serif; font-size: 14px; color: rgba(201,168,76,0.3); }
    .project-name { font-family: 'Cormorant Garamond', serif; font-size: 18px; font-weight: 400; color: var(--cream); position: relative; z-index: 1; }

    /* ── TESTIMONIALS ── */
    .testimonials { padding: 160px 60px; max-width: 1300px; margin: 0 auto; }
    .testi-track-wrap { overflow: hidden; margin-top: 80px; }
    .testi-track {
      display: flex;
      gap: 24px;
      animation: testiScroll 40s linear infinite;
      width: max-content;
    }
    .testi-track:hover { animation-play-state: paused; }
    @keyframes testiScroll {
      from { transform: translateX(0); }
      to { transform: translateX(-50%); }
    }
    .testi-card {
      width: 420px;
      flex-shrink: 0;
      background: var(--grey-1);
      border: 1px solid rgba(201,168,76,0.08);
      padding: 48px 40px;
      position: relative;
    }
    .testi-card::before { content: '"'; font-family: 'Cormorant Garamond', serif; font-size: 80px; color: rgba(201,168,76,0.15); position: absolute; top: 16px; right: 28px; line-height: 1; }
    .testi-text { font-family: 'Cormorant Garamond', serif; font-size: 18px; font-style: normal; color: var(--text-body); line-height: 1.8; margin-bottom: 32px; }
    .testi-author strong { display: block; color: var(--cream); font-size: 14px; margin-bottom: 4px; font-style: normal; }
    .testi-author span { font-size: 12px; color: var(--gold); letter-spacing: 0.1em; }

    /* ── CLIENTS ── */
    .clients-who { background: var(--grey-1); padding: 160px 60px; border-top: 1px solid rgba(201,168,76,0.08); }
    .clients-who-inner { max-width: 1300px; margin: 0 auto; display: grid; grid-template-columns: 0.6fr 1fr; gap: 120px; align-items: start; }
    .client-pillars { display: flex; flex-direction: column; gap: 2px; margin-top: 60px; }
    .client-pillar {
      background: var(--ink);
      border: 1px solid rgba(201,168,76,0.06);
      padding: 40px 36px;
      transition: all 0.4s;
      display: grid;
      grid-template-columns: 48px 1fr;
      gap: 24px;
      align-items: start;
    }
    .client-pillar:hover { background: var(--grey-2); border-color: rgba(201,168,76,0.2); }
    .pillar-num { font-family: "Source Serif 4", serif; font-size: 32px; font-weight: 300; color: rgba(201,168,76,0.35); line-height: 1; }
    .pillar-title { font-family: 'Cormorant Garamond', serif; font-size: 20px; color: var(--cream); margin-bottom: 12px; }
    .pillar-items { list-style: none; }
    .pillar-items li { font-size: 13px; color: var(--text-muted); line-height: 1.8; padding-left: 14px; position: relative; }
    .pillar-items li::before { content: '·'; position: absolute; left: 0; color: var(--gold); }

    /* ── CTA ── */
    .cta-section { padding: 200px 60px; text-align: center; position: relative; overflow: hidden; }
    .cta-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(201,168,76,0.08) 0%, transparent 70%); }
    .cta-section::after { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 500px; height: 500px; border: 1px solid rgba(201,168,76,0.06); border-radius: 50%; }
    .cta-inner { position: relative; z-index: 2; }
    .cta-eyebrow { font-size: 12px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 32px; }
    .cta-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(48px, 7vw, 88px); font-weight: 600; color: var(--cream); line-height: 1.1; margin-bottom: 40px; }
    .cta-title em { color: var(--gold); font-style:normal; }
    .cta-sub { font-size: 16px; color: var(--text-muted); max-width: 560px; margin: 0 auto 60px; line-height: 1.8; }
    .cta-actions { display: flex; gap: 24px; justify-content: center; align-items: center; }
    .btn-contact { padding: 20px 56px; background: var(--gold); color: var(--ink); text-decoration: none; font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 500; transition: all 0.3s; }
    .btn-contact:hover { background: var(--gold-light); transform: translateY(-3px); box-shadow: 0 20px 50px rgba(201,168,76,0.3); }
    .btn-phone { display: flex; align-items: center; gap: 10px; color: var(--text-muted); text-decoration: none; font-size: 14px; transition: color 0.3s; }
    .btn-phone:hover { color: var(--gold); }

    /* ── FOOTER ── */
    footer { background: var(--grey-1); border-top: 1px solid rgba(201,168,76,0.1); padding: 60px; }
    .footer-inner { max-width: 1300px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
    .footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 20px; color: var(--cream); }
    .footer-logo span { color: var(--gold); }
    .footer-copy { font-size: 12px; color: var(--text-muted); letter-spacing: 0.05em; }
    .footer-links { display: flex; gap: 32px; }
    .footer-links a { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); text-decoration: none; transition: color 0.3s; }
    .footer-links a:hover { color: var(--gold); }

    /* ── FLOATING CONTACT ── */
    .float-btns { position: fixed; right: 30px; bottom: 30px; display: flex; flex-direction: column; gap: 12px; z-index: 9990; }
    .float-btn { width: 48px; height: 48px; border-radius: 50%; background: var(--grey-1); border: 1px solid rgba(201,168,76,0.3); display: flex; align-items: center; justify-content: center; color: var(--gold); text-decoration: none; transition: all 0.3s; }
    .float-btn:hover { background: var(--gold); color: var(--ink); transform: translateY(-4px); }

    /* ── MOBILE NAV ── */
    @media (max-width: 900px) {
      .hamburger { display: flex; }
      /*.nav-links, .nav-cta { display: none !important; }*/
    /*  .nav-links.open { display: flex !important; position: fixed; top: 80px; left: 0; right: 0; bottom: 0; background: rgba(10,10,8,0.98); flex-direction: column; align-items: center; justify-content: center; gap: 40px; }
      .nav-links.open a { font-size: 18px; }
    }
*/
    /* ── RESPONSIVE ── */
    @media (max-width: 1100px) {
      .about-grid, .clients-who-inner { grid-template-columns: 1fr; gap: 60px; }
      .leader-cards { grid-template-columns: 1fr; gap: 2px; }
      .services-grid { grid-template-columns: 1fr 1fr; }
      .numbers-grid { grid-template-columns: 1fr 1fr; }
      .projects-grid { grid-template-columns: repeat(3, 1fr); }
    }
    @media (max-width: 768px) {
      .navbar { padding: 0 15px; }
     .hero-content { padding: 120px 24px 80px; }
      .hero-stats { display: none; }
      .hero-scroll { left: 24px; }
      .about, .leadership, .services, .numbers, .projects, .testimonials, .clients-who, .cta-section { padding: 100px 24px; }
      .service-img-banner { height: 200px; }
      .services-grid { grid-template-columns: 1fr; }
      .numbers-grid { grid-template-columns: 1fr; }
      .projects-grid { grid-template-columns: 1fr 1fr; }
      .services-tabs { flex-wrap: wrap; }
      .services-tab { padding: 12px 20px; }
      .footer-inner { flex-direction: column; gap: 24px; text-align: center; }
      .footer-links { flex-wrap: wrap; justify-content: center; }
      .cta-actions { flex-direction: column; }
      .about-cards { grid-template-columns: 1fr; }
      .leader-cards { grid-template-columns: 1fr; }
    }

    /* ── REVEAL ANIMATIONS - use visibility so layout is preserved ── */
    .reveal, .reveal-left, .reveal-right {
      opacity: 0;
    }
    /* fallback: if JS fails, show everything */
    .js-loaded .reveal,
    .js-loaded .reveal-left,
    .js-loaded .reveal-right {
      /* GSAP will handle these */
    }
 