  :root {
    --navy: #1a2d52;
    --navy-light: #243a6b;
    --navy-dark: #0f1c38;
    --gold: #D4A017;
    --gold-light: #F0C040;
    --green: #2e7d4f;
    --green-light: #3a9c61;
    --white: #ffffff;
    --off-white: #f7f6f2;
    --light-gray: #e8e6df;
    --text-dark: #1a1a1a;
    --text-mid: #4a4a4a;
    --text-light: #888;
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'DM Sans', sans-serif;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--font-sans);
    background: var(--white);
    color: var(--text-dark);
    overflow-x: hidden;
  }

  /* ========== NAV ========== */
  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(26, 45, 82, 0.97);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 160, 23, 0.25);
  }

  .nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
  }

  .nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
  }

  .nav-logo img {
    height: 54px;
    width: auto;
    object-fit: contain;
  }
  .logo-img {
    mix-blend-mode: screen;
    filter: brightness(1.1);
  }

  /* ========== RESPONSIVE IMPROVEMENTS ========== */
  @media (max-width: 1200px) {
    .hero-inner { padding: 3rem 2rem 4rem; gap: 2rem; }
    .expertise-grid { grid-template-columns: repeat(2, 1fr); }
    .practice-areas-grid { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
  }



  .nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
  }

  .nav-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.2s;
  }

  .nav-links a:hover { color: var(--gold-light); }

  .nav-cta {
    background: var(--gold);
    color: var(--navy-dark) !important;
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: 600 !important;
    transition: background 0.2s !important;
  }

  .nav-cta:hover { background: var(--gold-light) !important; color: var(--navy-dark) !important; }

  /* ========== HERO ========== */
  .hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, #1e4d3a 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 70px;
  }

  .hero-bg-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: 
      repeating-linear-gradient(0deg, transparent, transparent 60px, rgba(255,255,255,0.3) 60px, rgba(255,255,255,0.3) 61px),
      repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(255,255,255,0.3) 60px, rgba(255,255,255,0.3) 61px);
  }

  .hero-accent-bar {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(to bottom, var(--gold), var(--green-light), var(--gold));
  }

  .hero-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem 5rem;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
  }

  .hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 160, 23, 0.15);
    border: 1px solid rgba(212, 160, 23, 0.4);
    color: var(--gold-light);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 2px;
    margin-bottom: 1.5rem;
  }

  .hero-tag::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--gold-light);
    border-radius: 50%;
  }

  .hero h1 {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 1.5rem;
  }

  .hero h1 em {
    font-style: normal;
    color: var(--gold-light);
  }

  .hero p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 540px;
  }

  .hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .btn-primary {
    background: var(--gold);
    color: var(--navy-dark);
    padding: 14px 28px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    letter-spacing: 0.3px;
    transition: all 0.2s;
    display: inline-block;
  }

  .btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
  }

  .btn-outline {
    border: 1.5px solid rgba(255,255,255,0.4);
    color: white;
    padding: 14px 28px;
    border-radius: 4px;
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    letter-spacing: 0.3px;
    transition: all 0.2s;
    display: inline-block;
  }

  .btn-outline:hover {
    border-color: var(--gold-light);
    color: var(--gold-light);
  }

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    margin-top: 3rem;
    background: rgba(255,255,255,0.1);
    border-radius: 6px;
    overflow: hidden;
  }

  .hero-stat {
    background: rgba(255,255,255,0.04);
    padding: 1.2rem;
    text-align: center;
  }

  .hero-stat .num {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold-light);
    display: block;
  }

  .hero-stat .lbl {
    font-size: 11px;
    color: rgba(255,255,255,0.55);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2px;
    display: block;
  }

  /* Africa Map Hero Side */
  .hero-map-side {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 500px;
  }

  .hero-map-container {
    width: 100%;
  }

  .hero-map-container svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 50px rgba(212,160,23,0.15));
  }

  /* ========== SECTIONS ========== */
  section { padding: 6rem 2rem; }

  .section-inner {
    max-width: 1200px;
    margin: 0 auto;
  }

  .section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 1rem;
  }

  .section-tag::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--green);
  }

  h2.section-title {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.3;
    margin-bottom: 1rem;
  }

  .section-subtitle {
    font-size: 1.05rem;
    color: var(--text-mid);
    line-height: 1.8;
    max-width: 640px;
  }

  /* ========== ABOUT ========== */
  .about { background: var(--off-white); }

  .about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: center;
    margin-top: 3rem;
  }

  .about-content p {
    font-size: 1.05rem;
    color: var(--text-mid);
    line-height: 1.9;
    margin-bottom: 1.2rem;
  }

  .about-content p strong {
    color: var(--navy);
    font-weight: 600;
  }

  .about-values {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
  }

  .value-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem 1.2rem;
    background: white;
    border-radius: 6px;
    border-left: 3px solid var(--gold);
  }

  .value-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .value-icon svg { width: 16px; height: 16px; }

  .value-item h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 3px;
  }

  .value-item p {
    font-size: 13px;
    color: var(--text-mid);
    line-height: 1.6;
    margin: 0;
  }

  .about-vmv {
    display: grid;
    gap: 1.5rem;
  }

  .vmv-card {
    background: white;
    border-radius: 10px;
    padding: 1.8rem;
    border: 1px solid var(--light-gray);
    position: relative;
    overflow: hidden;
  }

  .vmv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
  }

  .vmv-card.vision::before { background: var(--navy); }
  .vmv-card.mission::before { background: var(--gold); }
  .vmv-card.values-card::before { background: var(--green); }

  .vmv-card h3 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.7rem;
  }

  .vmv-card p {
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.7;
  }

  /* ========== EXPERTISE ========== */
  .expertise { background: white; }

  .expertise-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: end;
    margin-bottom: 4rem;
  }

  .expertise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .expertise-card {
    background: var(--off-white);
    border-radius: 10px;
    padding: 2rem;
    border: 1px solid var(--light-gray);
    transition: all 0.25s;
    cursor: default;
    position: relative;
    overflow: hidden;
  }

  .expertise-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--navy);
    transform: scaleX(0);
    transition: transform 0.25s;
    transform-origin: left;
  }

  .expertise-card:hover {
    border-color: var(--navy);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(26, 45, 82, 0.1);
  }

  .expertise-card:hover::after { transform: scaleX(1); }

  .exp-num {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 700;
    color: var(--light-gray);
    line-height: 1;
    margin-bottom: 1rem;
  }

  .exp-icon {
    width: 44px;
    height: 44px;
    background: var(--navy);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
  }

  .exp-icon svg { width: 22px; height: 22px; }

  .expertise-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.7rem;
    line-height: 1.4;
  }

  .expertise-card p {
    font-size: 0.88rem;
    color: var(--text-mid);
    line-height: 1.7;
  }

  .exp-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-top: 1rem;
  }

  .exp-tag {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 3px 8px;
    background: rgba(26, 45, 82, 0.08);
    color: var(--navy);
    border-radius: 3px;
  }

  /* ========== PRACTICE AREAS ========== */
  .practice { background: var(--navy); }

  .practice .section-tag { color: var(--gold-light); }
  .practice .section-tag::before { background: var(--gold-light); }
  .practice h2.section-title { color: white; }
  .practice .section-subtitle { color: rgba(255,255,255,0.65); }

  .practice-areas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
  }

  .practice-area {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 2rem;
    transition: all 0.25s;
  }

  .practice-area:hover {
    background: rgba(255,255,255,0.09);
    border-color: rgba(212,160,23,0.4);
  }

  .pa-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
  }

  .pa-icon.gold { background: rgba(212, 160, 23, 0.2); }
  .pa-icon.green { background: rgba(46, 125, 79, 0.3); }
  .pa-icon.blue { background: rgba(56, 100, 200, 0.2); }

  .pa-icon svg { width: 24px; height: 24px; }

  .practice-area h3 {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
  }

  .practice-area ul {
    list-style: none;
    display: grid;
    gap: 6px;
  }

  .practice-area ul li {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    padding-left: 14px;
    position: relative;
    line-height: 1.5;
  }

  .practice-area ul li::before {
    content: '–';
    position: absolute;
    left: 0;
    color: var(--gold);
  }

  /* ========== PORTFOLIO ========== */
  .portfolio { background: var(--off-white); }

  .portfolio-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: flex-start;
    margin-top: 3rem;
  }

  .portfolio-map-wrap {
    position: sticky;
    top: 100px;
  }

  .portfolio-map-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-mid);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .portfolio-map-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--light-gray);
  }

  .map-svg-container {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid var(--light-gray);
  }

  .map-legend {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.2rem;
    flex-wrap: wrap;
  }

  .legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-mid);
  }

  .legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
  }

  .projects-list {
    display: grid;
    gap: 1.5rem;
  }

  .project-card {
    background: white;
    border-radius: 10px;
    padding: 1.8rem;
    border: 1px solid var(--light-gray);
    transition: all 0.2s;
    position: relative;
    overflow: hidden;
  }

  .project-card:hover {
    border-color: var(--navy);
    box-shadow: 0 8px 30px rgba(26, 45, 82, 0.08);
  }

  .project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 4px;
  }

  .project-card.uganda::before { background: var(--gold); }
  .project-card.sierra::before { background: var(--green); }
  .project-card.malawi::before { background: var(--navy); }
  .project-card.multi::before { background: linear-gradient(to bottom, var(--gold), var(--green), var(--navy)); }

  .project-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.8rem;
  }

  .project-num {
    font-family: var(--font-serif);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: 1px;
    flex-shrink: 0;
    margin-top: 3px;
  }

  .project-card h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.5;
    flex: 1;
  }

  .project-meta {
    display: flex;
    gap: 0.7rem;
    flex-wrap: wrap;
    margin-bottom: 0.8rem;
  }

  .project-badge {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 3px 10px;
    border-radius: 100px;
    text-transform: uppercase;
  }

  .badge-country {
    background: rgba(26, 45, 82, 0.08);
    color: var(--navy);
  }

  .badge-year {
    background: rgba(212, 160, 23, 0.15);
    color: #7a5800;
  }

  .badge-client {
    background: rgba(46, 125, 79, 0.1);
    color: var(--green);
  }

  .badge-ongoing {
    background: rgba(220, 60, 60, 0.1);
    color: #b02020;
  }

  .project-desc {
    font-size: 0.85rem;
    color: var(--text-mid);
    line-height: 1.7;
  }

  /* ========== LEADERSHIP ========== */
  .leadership { background: white; }

  .team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
  }

  .team-card {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 1.5rem;
    align-items: flex-start;
    background: var(--off-white);
    border-radius: 12px;
    padding: 1.8rem;
    border: 1px solid var(--light-gray);
    transition: all 0.25s;
  }

  .team-card:hover {
    border-color: var(--navy);
    box-shadow: 0 8px 30px rgba(26,45,82,0.08);
  }

  .team-avatar {
    width: 90px;
    height: 90px;
    border-radius: 10px;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gold-light);
    flex-shrink: 0;
    border: 3px solid var(--gold);
  }

  .team-info h3 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
  }

  .team-role {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--green);
    text-transform: uppercase;
    margin-bottom: 0.8rem;
  }

  .team-info p {
    font-size: 0.85rem;
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 0.8rem;
  }

  .team-cert {
    font-size: 11px;
    font-weight: 600;
    color: var(--navy);
    background: rgba(26, 45, 82, 0.07);
    padding: 4px 10px;
    border-radius: 4px;
    display: inline-block;
  }

  /* ========== CONTACT ========== */
  .contact {
    background: var(--navy-dark);
    color: white;
  }

  .contact .section-tag { color: var(--gold-light); }
  .contact .section-tag::before { background: var(--gold-light); }
  .contact h2.section-title { color: white; }

  .contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    margin-top: 3rem;
  }

  .contact-info p {
    font-size: 1rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.8;
    margin-bottom: 2rem;
  }

  .contact-items {
    display: grid;
    gap: 1.2rem;
  }

  .contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .contact-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(212, 160, 23, 0.15);
    border: 1px solid rgba(212, 160, 23, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .contact-icon svg { width: 18px; height: 18px; }

  .contact-item a, .contact-item span {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
  }

  .contact-item a:hover { color: var(--gold-light); }

  .contact-form {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 2.5rem;
  }

  .contact-form h3 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: white;
    margin-bottom: 1.5rem;
  }

  .form-group {
    margin-bottom: 1.2rem;
  }

  .form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    margin-bottom: 6px;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    width: 100%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 6px;
    padding: 12px 14px;
    font-family: var(--font-sans);
    font-size: 14px;
    color: white;
    outline: none;
    transition: border-color 0.2s;
  }

  .form-group input::placeholder,
  .form-group textarea::placeholder {
    color: rgba(255,255,255,0.3);
  }

  .form-group input:focus,
  .form-group textarea:focus,
  .form-group select:focus {
    border-color: var(--gold);
  }

  .form-group textarea { min-height: 100px; resize: vertical; }

  .form-group select option { background: var(--navy); }

  .btn-submit {
    width: 100%;
    background: var(--gold);
    color: var(--navy-dark);
    border: none;
    padding: 14px;
    border-radius: 6px;
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    letter-spacing: 0.3px;
    transition: background 0.2s;
    margin-top: 0.5rem;
  }

  .btn-submit:hover { background: var(--gold-light); }

  /* ========== FOOTER ========== */
  footer {
    background: #080f1d;
    color: rgba(255,255,255,0.45);
    padding: 3rem 2rem;
    text-align: center;
    font-size: 13px;
  }

  footer .footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
  }

  footer .footer-links {
    display: flex;
    gap: 1.5rem;
  }

  footer a {
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    font-size: 12px;
    transition: color 0.2s;
  }

  footer a:hover { color: var(--gold-light); }

  .footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .footer-logo {
    height: 36px;
    width: auto;
    object-fit: contain;
  }

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

  /* ========== DIVIDER ========== */
  .tri-divider {
    height: 60px;
    display: flex;
    gap: 0;
  }

  .tri-divider span {
    flex: 1;
  }

  /* ========== HAMBURGER ========== */
  .nav-hamburger {
    display: none; flex-direction: column; justify-content: center;
    gap: 5px; background: none; border: none; cursor: pointer;
    padding: 4px 6px; z-index: 200; flex-shrink: 0;
  }
  .nav-hamburger span {
    display: block; width: 24px; height: 2px;
    background: rgba(255,255,255,0.85); border-radius: 2px;
    transition: all 0.3s ease; transform-origin: center;
  }
  .nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* ========== OVERLAY ========== */
  #countryOverlay {
    display: none; position: fixed; inset: 0; z-index: 9999;
    background: rgba(10,18,40,0.93); overflow-y: auto; padding: 2rem 1rem;
  }
  #overlayBox {
    max-width: 860px; margin: 0 auto; background: var(--off-white);
    border-radius: 16px; overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  }
  #overlayHead {
    padding: 2rem 2.5rem; display: flex; align-items: center;
    justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  }
  #overlayProjects { padding: 0 2.5rem 2.5rem; display: grid; gap: 1.2rem; }
  .ov-card {
    background: white; border-radius: 10px; padding: 1.5rem;
    border: 1px solid var(--light-gray); border-left: 4px solid #ccc;
  }
  .ov-card h3 { font-size:.95rem;font-weight:600;color:var(--navy);line-height:1.5;margin:0 0 .7rem; }
  .ov-card p  { font-size:.85rem;color:var(--text-mid);line-height:1.7;margin:0; }

  /* ========== RESPONSIVE ========== */
  @media (max-width: 900px) {
    .nav-hamburger { display: flex; }
    .nav-links {
      position: fixed; top: 70px; left: 0; right: 0;
      background: rgba(15,28,56,0.98);
      flex-direction: column; gap: 0; padding: 0;
      max-height: 0; overflow: hidden;
      transition: max-height 0.4s ease;
      border-bottom: 1px solid rgba(212,160,23,0.2); z-index: 99;
    }
    .nav-links.open { max-height: 400px; padding: 0.5rem 0 1rem; }
    .nav-links li { width: 100%; }
    .nav-links a { display: block; padding: .9rem 2rem; font-size:14px; border-bottom:1px solid rgba(255,255,255,0.05); }
    .nav-cta { margin: .8rem 2rem 0 !important; display:inline-block !important; width:auto !important; }
    .hero-inner { grid-template-columns: 1fr; gap: 1.5rem; padding: 3rem 1.5rem 4rem; }
    .hero-map-side { width: 85%; max-width: 420px; margin: 0 auto; min-height: auto; }
    .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .expertise-grid { grid-template-columns: repeat(2, 1fr); }
    .practice-areas-grid { grid-template-columns: 1fr; }
    .portfolio-layout { grid-template-columns: 1fr; }
    .portfolio-map-wrap { position: relative; top: 0; }
    .team-grid { grid-template-columns: 1fr; }
    .contact-layout { grid-template-columns: 1fr; }
    .expertise-intro { grid-template-columns: 1fr; gap: 1rem; }
    #overlayHead { padding: 1.5rem; }
    #overlayProjects { padding: 0 1.2rem 1.5rem; }
  }
  @media (max-width: 600px) {
    section { padding: 3.5rem 1rem; }
    .section-inner { padding: 0 0.2rem; }
    .expertise-grid { grid-template-columns: 1fr; }
    .practice-areas-grid { grid-template-columns: 1fr; }
    .team-card { grid-template-columns: 1fr; }
    .team-avatar { width: 70px; height: 70px; font-size: 1.3rem; }
    .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 1px; }
    .hero h1 { font-size: clamp(1.8rem, 6vw, 2.4rem); }
    .hero p { font-size: 0.95rem; }
    .hero-actions { flex-direction: column; }
    .btn-primary, .btn-outline { text-align: center; }
    .about-grid { gap: 2rem; }
    .contact-layout { gap: 2rem; }
    footer .footer-inner { flex-direction: column; text-align: center; }
    footer .footer-links { flex-wrap: wrap; justify-content: center; gap: 1rem; }
    .portfolio-layout { gap: 2rem; }
    .map-svg-container { padding: 1rem; }
    h2.section-title { font-size: clamp(1.5rem, 5vw, 2rem); }
    .contact-form { padding: 1.5rem; }
    .expertise-intro { gap: 1.5rem; }
    #overlayHead { padding: 1rem; }
    #overlayProjects { padding: 0 1rem 1.5rem; }
    .nav-inner { padding: 0 1rem; }
  }

  @media (max-width: 400px) {
    .hero-stats { grid-template-columns: 1fr; }
    .hero-stat .num { font-size: 1.6rem; }
    section { padding: 3rem 0.8rem; }
  }

  /* Scroll Animation */
  .fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .fade-up.visible {
    opacity: 1;
    transform: none;
  }

  /* ── Country Overlay ── */
  #countryOverlay {
    display: none; position: fixed; inset: 0; z-index: 9999;
    background: rgba(10,18,40,0.93); overflow-y: auto; padding: 2rem 1rem;
  }
  #overlayBox {
    max-width: 860px; margin: 0 auto; background: var(--off-white);
    border-radius: 16px; overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  }
  #overlayHead {
    padding: 2rem 2.5rem; display: flex; align-items: center;
    justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  }
  .ov-card {
    background: white; border-radius: 10px; padding: 1.5rem;
    border: 1px solid var(--light-gray); border-left: 4px solid #ccc;
  }
  .ov-card h3 { font-size:.95rem;font-weight:600;color:var(--navy);line-height:1.5;margin:0 0 .7rem; }
  .ov-card p  { font-size:.85rem;color:var(--text-mid);line-height:1.7;margin:0; }
