  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: #0B2040 #FAF7F0;
  }
  

  .nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;                  /* increased from 4px — gives the icon and text room to breathe */
    text-decoration: none;
    margin-right: auto;
    padding: 18px 0;
    line-height: 1;
    color: #B8860B;             /* used by currentColor on the icon SVG */
  }

  .nav-link{font-size:13px;color:#fff;padding:20px 15px;cursor:pointer;white-space:nowrap}

  
  /* Icon */
  .nav-logo-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 165px;
    height: 32px;
    flex-shrink: 0;
    color: #B8860B;             /* icon strokes/fills via currentColor */
  }
  .nav-logo-icon svg {
    width: 100%;
    height: 100%;
    display: block;
  }
  
  /* Separator — thin vertical line between icon and text */
  .nav-separator {
    display: inline-block;
    width: 1px;
    height: 24px;
    background: rgba(184, 134, 11, 0.6);   /* tinted gold, slightly transparent */
    flex-shrink: 0;
  }
  
  /* Main Brand */
  .nav-logo-main {
    font-family: Georgia, serif;
    font-size: 17px;
    color: #fff;
    letter-spacing: .02em;
    line-height: 1.15;
  }
  
  /* Secondary Brand (kept for future use) */
  .nav-logo-sub {
    font-family: Inter, sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: rgba(255, 255, 255, .78);
  }
  
  /* Hover */
  .nav-logo:hover .nav-logo-main,
  .nav-logo:hover .nav-logo-sub {
    opacity: .88;
  }
  .nav-logo:hover .nav-logo-icon {
    opacity: .85;
  }

  /* NAV */
.nav {
  background: #0F2D52;
  display: flex;
  align-items: center;
  padding: 0 48px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-link {
  font-size: 13px;
  color: rgba(255,255,255,.7);
  padding: 20px 15px;
  cursor: pointer;
  white-space: nowrap;
}

.nav-link.active {
  color: #fff;
  border-bottom: 2px solid #B8860B;
}

/* PREMIUM SOCIAL ICONS */
.nav-social {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 18px;
  padding-left: 18px;
  border-left: 1px solid rgba(255,255,255,.16);
}

.nav-social a {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.68);
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.10);
  transition:
    color .25s ease,
    background .25s ease,
    border-color .25s ease,
    transform .25s ease,
    box-shadow .25s ease;
}

.nav-social a svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
  display: block;
}

.nav-social a:hover {
  color: #fff;
  background: rgba(184,134,11,.16);
  border-color: rgba(184,134,11,.55);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0,0,0,.18);
}

.nav-social a:focus-visible {
  outline: 2px solid rgba(184,134,11,.9);
  outline-offset: 3px;
}

/* CTA spacing after social icons */
.nav-apply {
  margin-left: 18px;
}

/* Optional responsive handling */
@media (max-width: 1100px) {
  .nav-social {
    display: none;
  }
}

/* Mobile */
@media (max-width:768px){
  .nav-logo-main{font-size:16px;}
  .nav-logo-sub{font-size:12px;}
}

.nav-apply{
  display:inline-block;
  background:#B8860B;
  color:#fff;
  font-size:12px;
  font-weight:500;
  padding:9px 18px;
  border:1px solid #B8860B;
  border-radius:3px 14px 14px 3px;
  margin-left:20px;
  cursor:pointer;
  font-family:inherit;
  text-decoration:none;
  line-height:1;
}

.nav-apply:visited{
  color:#fff;
}

.nav-apply:hover,
.nav-apply:focus{
  color:#fff;
  text-decoration:none;
}

    /* STATS BAR */
    .stats{background:#fff;border-bottom:1px solid #E5E2D9;display:grid;grid-template-columns:repeat(4,1fr)}
    .stat{text-align:center;padding:28px 16px;border-right:0.5px solid #E5E2D9}
    .stat:last-child{border-right:none}
    .stat-n{font-family:Georgia,serif;font-size:30px;color:#0F2D52;line-height:1}
    .stat-l{font-size:14px;color:#6B7280;margin-top:6px;line-height:1.45}

/* FOOTER CORE */
.footer{
  padding:40px 48px 24px;
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1fr;
  gap:42px;
}

/* ROW 1 */
.footer-top{
  background:#0B2040;
  border-bottom:1px solid rgba(255,255,255,.06);
}

/* ROW 2 - DIFFERENT COLOR */
.footer-bottom-grid{
  background:#0B2040;
}

/* BRAND */
.footer-brand{
  font-family:Georgia,serif;
  font-size:15px;
  color:#fff;
  margin-bottom:8px;
}

.footer-brand span{
  color:#B8860B;
}

.footer-desc{
  font-size:12px;
  color:rgba(255,255,255,.34);
  line-height:1.65;
  max-width:240px;
}

/* HEADINGS */
.footer-head{
  font-size:10px;
  font-weight:600;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:rgba(255,255,255,.34);
  margin-bottom:14px;
}

.footer-subhead{
  margin-top:8px;
}

/* LINKS */
.footer-link{
  display:block;
  font-size:12px;
  color:rgba(255,255,255,.52);
  margin-bottom:8px;
  text-decoration:none;
  line-height:1.55;
  transition:.18s ease;
}

.footer-link:hover{
  color:#fff;
  transform:translateX(2px);
}

/* COPYRIGHT */
.footer-bottom{
  background:#10294F;
  border-top:1px solid rgba(255,255,255,.06);
  padding:14px 48px;
  display:flex;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
}

.footer-copy{
  font-size:11px;
  color:rgba(255,255,255,.24);
}

/* RESPONSIVE */
@media(max-width:1100px){

  .footer{
    grid-template-columns:1fr 1fr;
  }

}

@media(max-width:760px){

  .footer{
    grid-template-columns:1fr;
    padding:32px 24px 20px;
    gap:28px;
  }

  .footer-bottom{
    padding:14px 24px;
    flex-direction:column;
    align-items:flex-start;
  }

}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;

  font-size:11px;
  font-weight:500;
  letter-spacing:.12em;
  text-transform:uppercase;

  color:#B8860B;
  margin-bottom:12px;
  line-height:1;
}

/* decorative dash */
.eyebrow::before{
  content:"";
  width:42px;
  height:1px;
  flex-shrink:0;

  background:linear-gradient(
    90deg,
    #D4A017 0%,
    #B8860B 45%,
    rgba(184,134,11,0) 100%
  );
}

/* optional version for light sections */
.eyebrow.light-eyebrow{
  color:#0F2D52;
}

.eyebrow.light-eyebrow::before{
  background:linear-gradient(
    90deg,
    #1E4C84 0%,
    #0F2D52 45%,
    rgba(15,45,82,0) 100%
  );
}

/* Element Motions */
 /* =========================================================
   PREMIUM MOTION SYSTEM — HERO / PROGRAMME / DEPARTMENTS
   ========================================================= */

/* ---------- Global motion tokens ---------- */
:root{
  --motion-ease: cubic-bezier(.22, 1, .36, 1);
  --motion-slow: 900ms;
  --motion-med: 700ms;
  --motion-fast: 420ms;
}

/* Prevent animation flash before JS runs */
.motion-ready [data-reveal]{
  opacity:0;
  transform:translateY(24px);
  transition:
    opacity var(--motion-med) var(--motion-ease),
    transform var(--motion-med) var(--motion-ease);
  will-change:opacity, transform;
}

.motion-ready [data-reveal].is-visible{
  opacity:1;
  transform:translateY(0);
}

/* Direction variants */
.motion-ready [data-reveal="left"]{
  transform:translateX(-28px);
}

.motion-ready [data-reveal="right"]{
  transform:translateX(28px);
}

.motion-ready [data-reveal="scale"]{
  transform:scale(1.035);
}

.motion-ready [data-reveal="left"].is-visible,
.motion-ready [data-reveal="right"].is-visible{
  transform:translateX(0);
}

.motion-ready [data-reveal="scale"].is-visible{
  transform:scale(1);
}

/* Stagger helper */
.motion-ready [data-delay="1"]{transition-delay:90ms}
.motion-ready [data-delay="2"]{transition-delay:180ms}
.motion-ready [data-delay="3"]{transition-delay:270ms}
.motion-ready [data-delay="4"]{transition-delay:360ms}
.motion-ready [data-delay="5"]{transition-delay:450ms}
.motion-ready [data-delay="6"]{transition-delay:540ms}

/* =========================================================
   1. HERO ENTRANCE
   ========================================================= */

   .motion-ready .hero-video-bg video{
    animation:heroVideoSettle 5200ms var(--motion-ease) both;
    transform-origin:center;
  }
  
  @keyframes heroVideoSettle{
    from{
      transform:scale(1.045);
      filter:saturate(.9) contrast(.95);
    }
    to{
      transform:scale(1);
      filter:saturate(1) contrast(1);
    }
  }
  
  .motion-ready .hero-eyebrow,
  .motion-ready .hero-h1,
  .motion-ready .hero-sub,
  .motion-ready .hero-actions,
  .motion-ready .hero-footnote{
    opacity:0;
    transform:translateY(22px);
    animation:heroReveal var(--motion-slow) var(--motion-ease) forwards;
  }
  
  .motion-ready .hero-eyebrow{animation-delay:180ms}
  .motion-ready .hero-h1{animation-delay:320ms}
  .motion-ready .hero-sub{animation-delay:480ms}
  .motion-ready .hero-actions{animation-delay:650ms}
  .motion-ready .hero-footnote{animation-delay:800ms}
  
  @keyframes heroReveal{
    to{
      opacity:1;
      transform:translateY(0);
    }
  }

  /* Reusable hero entrance motion */
.motion-ready .hero-motion > *{
  opacity:0;
  transform:translateY(22px);
  animation:heroReveal 900ms cubic-bezier(.22,1,.36,1) forwards;
}

.motion-ready .hero-motion > *:nth-child(1){animation-delay:180ms}
.motion-ready .hero-motion > *:nth-child(2){animation-delay:320ms}
.motion-ready .hero-motion > *:nth-child(3){animation-delay:480ms}
.motion-ready .hero-motion > *:nth-child(4){animation-delay:650ms}
.motion-ready .hero-motion > *:nth-child(5){animation-delay:800ms}
.motion-ready .hero-motion > *:nth-child(6){animation-delay:950ms}

@keyframes heroReveal{
  to{
    opacity:1;
    transform:translateY(0);
  }
}