    /* =============================================
       CSS CUSTOM PROPERTIES
    ============================================= */
    :root {
      --navy:     #0A1628;
      --navy2:    #0D1F3C;
      --blue:     #1565C0;
      --bluelt:   #42A5F5;
      --gold:     #C9A84C;
      --goldlt:   #E8C97A;
      --white:    #FFFFFF;
      --offwhite: #F5F3EE;
      --stone:    #E8E4DC;
      --grey:     #6B7280;
      --charcoal: #1F2937;
      --font-display: 'Cormorant Garamond', Georgia, serif;
      --font-body:    'Jost', sans-serif;
      --ease:     cubic-bezier(.25,.46,.45,.94);
      --trans:    0.42s cubic-bezier(.25,.46,.45,.94);
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: var(--font-body);
      font-weight: 300;
      background: var(--navy);
      color: var(--white);
      overflow-x: hidden;
      cursor: none;
    }
    body.menu-open { overflow: hidden; }
    img { display: block; width: 100%; height: 100%; object-fit: cover; }
    a { color: inherit; text-decoration: none; }

    /* ── Custom Cursor ───────────────────────────── */
    #cursor, #cursor-ring {
      position: fixed; border-radius: 50%; pointer-events: none;
      z-index: 9999; transform: translate(-50%, -50%);
      transition: width var(--trans), height var(--trans);
    }
    #cursor { width: 10px; height: 10px; background: var(--gold); }
    #cursor-ring { width: 36px; height: 36px; border: 1px solid rgba(201,168,76,0.55); background: transparent; }
    body.cursor-hover #cursor { width: 6px; height: 6px; }
    body.cursor-hover #cursor-ring { width: 52px; height: 52px; }
    @media (pointer: coarse) { #cursor, #cursor-ring { display: none; } body { cursor: auto; } }

    /* ── Scroll Reveal ───────────────────────────── */
    .reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.85s var(--ease), transform 0.85s var(--ease); }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .reveal-d1 { transition-delay: 0.1s; }
    .reveal-d2 { transition-delay: 0.2s; }
    .reveal-d3 { transition-delay: 0.3s; }
    .reveal-d4 { transition-delay: 0.4s; }
    .reveal-d5 { transition-delay: 0.5s; }
    @media (prefers-reduced-motion: reduce) {
      .reveal { opacity: 1; transform: none; transition: none; }
      * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
    }

    /* ── Section Labels ──────────────────────────── */
    .section-label {
      display: inline-flex; align-items: center; gap: 10px;
      font-family: var(--font-body); font-size: 11px; font-weight: 400;
      letter-spacing: 0.22em; text-transform: uppercase; margin-bottom: 20px;
    }
    .section-label::before { content: ''; display: block; width: 28px; height: 1px; background: currentColor; }
    .section-label.gold { color: var(--gold); }
    .section-label.blue { color: var(--blue); }
    .section-label.navy { color: var(--navy); }

    /* ── Buttons ─────────────────────────────────── */
    .btn {
      display: inline-flex; align-items: center; gap: 10px;
      font-family: var(--font-body); font-size: 11px; font-weight: 400;
      letter-spacing: 0.18em; text-transform: uppercase;
      padding: 14px 30px; border: 1px solid currentColor;
      transition: var(--trans); cursor: none;
    }
    .btn-gold { background: var(--gold); color: var(--navy); border-color: var(--gold); }
    .btn-gold:hover { background: var(--goldlt); border-color: var(--goldlt); }
    .btn-ghost-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.45); }
    .btn-ghost-white:hover { background: rgba(255,255,255,0.08); border-color: var(--white); }
    .btn-ghost-gold { background: transparent; color: var(--gold); border-color: var(--gold); }
    .btn-ghost-gold:hover { background: var(--gold); color: var(--navy); }
    .btn-ghost-navy { background: transparent; color: var(--navy); border-color: var(--navy); }
    .btn-ghost-navy:hover { background: var(--navy); color: var(--white); }

    /* =============================================
       NAVIGATION BAR
    ============================================= */
    #navbar {
      position: fixed; top: 0; left: 0; width: 100%; z-index: 200;
      padding: 0 48px; height: 72px; display: flex; align-items: center;
      justify-content: space-between;
      background: rgba(10,22,40,0.96);
      backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(201,168,76,0.2);
      transition: border-bottom 0.5s var(--ease);
    }
    #navbar.scrolled { border-bottom-color: var(--gold); }
    .nav-logo img { height: 34px; width: auto; display: block; }
    .nav-right { display: flex; align-items: center; gap: 36px; }
    .nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
    .nav-links a {
      font-family: var(--font-body); font-size: 11px; font-weight: 400;
      letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.8);
      position: relative; padding-bottom: 3px; transition: color var(--trans);
    }
    .nav-links a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1px; background: var(--gold); transition: width var(--trans); }
    .nav-links a:hover, .nav-links a.active { color: var(--white); }
    .nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
    .nav-cta {
      font-family: var(--font-body); font-size: 11px; font-weight: 400;
      letter-spacing: 0.18em; text-transform: uppercase;
      padding: 10px 22px; border: 1px solid var(--gold); color: var(--gold);
      background: transparent; transition: var(--trans); cursor: none;
    }
    .nav-cta:hover { background: var(--gold); color: var(--navy); }

    .hamburger { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 32px; height: 32px; background: none; border: none; cursor: none; padding: 4px; }
    .hamburger span { display: block; width: 100%; height: 1px; background: var(--white); transition: var(--trans); transform-origin: center; }
    .hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
    @media (max-width: 768px) { #navbar { padding: 0 24px; } .nav-links, .nav-cta { display: none; } .hamburger { display: flex; } }

    /* Services dropdown */
    .has-dropdown { position: relative; }
    .has-dropdown > a { display: inline-flex; align-items: center; gap: 5px; }
    .nav-chevron { transition: transform 0.35s var(--ease); flex-shrink: 0; opacity: 0.55; display: block; }
    .has-dropdown:hover .nav-chevron { transform: rotate(180deg); opacity: 1; }
    .nav-dropdown {
      position: absolute; top: calc(100% + 18px); left: 50%;
      transform: translateX(-50%) translateY(-8px); width: 540px; display: flex;
      background: rgba(7,16,32,0.98); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
      border: 1px solid rgba(201,168,76,0.18); border-top: 2px solid var(--gold);
      opacity: 0; pointer-events: none; transition: opacity 0.32s var(--ease), transform 0.32s var(--ease);
      z-index: 300; overflow: hidden;
    }
    .has-dropdown::after { content: ''; position: absolute; top: 100%; left: -20px; right: -20px; height: 22px; }
    .has-dropdown:hover .nav-dropdown { opacity: 1; pointer-events: all; transform: translateX(-50%) translateY(0); }
    .nav-dropdown-links { flex: 0 0 260px; display: flex; flex-direction: column; padding: 8px 0; }
    .nav-dropdown-links a {
      display: flex; align-items: center; gap: 10px; padding: 12px 22px;
      font-family: var(--font-body); font-size: 10px; font-weight: 400;
      letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.45);
      border-bottom: 1px solid rgba(255,255,255,0.035);
      transition: color 0.25s var(--ease), background 0.25s var(--ease), padding-left 0.25s var(--ease); position: relative;
    }
    .nav-dropdown-links a:last-child { border-bottom: none; }
    .nav-dropdown-links a::before { content: ''; display: block; width: 0; height: 1px; background: var(--gold); flex-shrink: 0; transition: width 0.25s var(--ease); }
    .nav-dropdown-links a:hover { color: var(--gold); background: rgba(201,168,76,0.055); padding-left: 28px; }
    .nav-dropdown-links a:hover::before { width: 12px; }
    .nav-dropdown-links a::after { display: none; }
    .nav-dropdown-preview { flex: 1; position: relative; background: var(--navy2); overflow: hidden; min-height: 260px; }
    .nav-preview-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; opacity: 0; transition: opacity 0.4s var(--ease), transform 0.5s var(--ease); transform: scale(1.04); }
    .nav-preview-img.active { opacity: 1; transform: scale(1); }
    .nav-preview-caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 10px 14px; background: linear-gradient(to top, rgba(7,16,32,0.85), transparent); font-family: var(--font-body); font-size: 9px; font-weight: 400; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); opacity: 0; transition: opacity 0.3s var(--ease); }
    .has-dropdown:hover .nav-preview-caption { opacity: 1; }

    /* =============================================
       OVERLAY MENU
    ============================================= */
    #overlay-menu {
      position: fixed; inset: 0; z-index: 190; background: var(--navy);
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      opacity: 0; pointer-events: none; transition: opacity 0.5s var(--ease);
      overflow-y: auto; overflow-x: hidden; padding: 88px 24px 48px;
    }
    #overlay-menu.open { opacity: 1; pointer-events: all; }
    .overlay-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: 60px 60px; animation: gridDrift 20s linear infinite;
    }
    @keyframes gridDrift { 0% { transform: translate(0,0); } 100% { transform: translate(60px,60px); } }
    .overlay-inner { position: relative; z-index: 2; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 0; }
    .overlay-nav { list-style: none; display: flex; flex-direction: column; align-items: center; gap: 8px; margin-bottom: 48px; }
    .overlay-nav li { opacity: 0; transform: translateY(20px); transition: opacity 0.5s var(--ease), transform 0.5s var(--ease); }
    #overlay-menu.open .overlay-nav li:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0.1s; }
    #overlay-menu.open .overlay-nav li:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.18s; }
    #overlay-menu.open .overlay-nav li:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.26s; }
    #overlay-menu.open .overlay-nav li:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.34s; }
    #overlay-menu.open .overlay-nav li:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: 0.42s; }
    .overlay-nav a { font-family: var(--font-display); font-size: clamp(40px,7vw,80px); font-weight: 300; color: rgba(255,255,255,0.9); letter-spacing: 0.04em; transition: color 0.3s var(--ease); display: block; line-height: 1.15; }
    .overlay-nav a:hover, .overlay-nav a.active { color: var(--gold); }
    .overlay-divider { width: 120px; height: 1px; background: var(--gold); margin-bottom: 36px; opacity: 0; transition: opacity 0.5s var(--ease) 0.5s; }
    #overlay-menu.open .overlay-divider { opacity: 0.6; }
    .overlay-socials { display: flex; align-items: center; gap: 24px; margin-bottom: 28px; opacity: 0; transition: opacity 0.5s var(--ease) 0.55s; }
    #overlay-menu.open .overlay-socials { opacity: 1; }
    .overlay-socials a { color: rgba(255,255,255,0.45); transition: color 0.3s var(--ease); }
    .overlay-socials a:hover { color: var(--gold); }
    .overlay-socials svg { width: 18px; height: 18px; fill: currentColor; }
    .overlay-tagline { font-family: var(--font-display); font-style: italic; font-size: 16px; color: var(--gold); letter-spacing: 0.06em; opacity: 0; transition: opacity 0.5s var(--ease) 0.6s; }
    #overlay-menu.open .overlay-tagline { opacity: 1; }
    .overlay-has-sub { display: flex; flex-direction: column; align-items: center; }
    .overlay-item-row { display: flex; align-items: center; justify-content: center; gap: 14px; }
    .overlay-sub-toggle { background: none; border: 1px solid rgba(201,168,76,0.35); border-radius: 50%; width: 30px; height: 30px; display: flex; align-items: center; justify-content: center; cursor: pointer; color: var(--gold); flex-shrink: 0; transition: background var(--trans), border-color var(--trans); padding: 0; }
    .overlay-sub-toggle svg { display: block; transition: transform 0.38s var(--ease); }
    .overlay-sub-toggle.open { background: rgba(201,168,76,0.12); border-color: var(--gold); }
    .overlay-sub-toggle.open svg { transform: rotate(180deg); }
    .overlay-submenu { list-style: none; max-height: 0; overflow: hidden; transition: max-height 0.45s var(--ease), opacity 0.35s var(--ease); display: flex; flex-direction: column; align-items: center; gap: 0; opacity: 0; width: 100%; }
    .overlay-submenu.open { max-height: 360px; opacity: 1; }
    .overlay-sublink { font-family: var(--font-body) !important; font-size: 12px !important; font-weight: 400 !important; letter-spacing: 0.2em !important; text-transform: uppercase; color: rgba(255,255,255,0.35) !important; padding: 9px 0; display: block; line-height: 1 !important; transition: color 0.28s var(--ease) !important; }
    .overlay-sublink:hover { color: var(--gold) !important; }

    /* =============================================
       PAGE HERO
    ============================================= */
    #page-hero {
      position: relative; width: 100%; height: 65vh; min-height: 520px;
      overflow: hidden; display: flex; align-items: flex-end;
    }
    .page-hero-img { position: absolute; inset: 0; }
    .page-hero-img img {
      width: 100%; height: 100%; object-fit: cover; object-position: center 40%;
      transform: scale(1.05); animation: heroZoom 14s ease-out forwards;
    }
    @keyframes heroZoom { to { transform: scale(1); } }
    .page-hero-overlay {
      position: absolute; inset: 0; z-index: 1;
      background: linear-gradient(135deg, rgba(10,22,40,0.90) 0%, rgba(10,22,40,0.60) 55%, rgba(10,22,40,0.35) 100%);
    }
    .page-hero-grid {
      position: absolute; inset: 0; z-index: 2; pointer-events: none;
      background-image: linear-gradient(rgba(201,168,76,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(201,168,76,0.03) 1px, transparent 1px);
      background-size: 80px 80px;
    }
    .page-hero-vline {
      position: absolute; left: 80px; top: 18%; bottom: 18%; width: 1px;
      background: linear-gradient(to bottom, transparent, var(--gold), transparent);
      z-index: 3; opacity: 0; animation: vLineFade 1s 0.7s var(--ease) forwards;
    }
    @keyframes vLineFade { to { opacity: 0.3; } }
    @keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

    .page-hero-content { position: relative; z-index: 4; padding: 0 80px 80px 120px; }
    .page-hero-label {
      display: flex; align-items: center; gap: 14px;
      font-family: var(--font-body); font-size: 11px; font-weight: 400;
      letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold);
      margin-bottom: 18px; opacity: 0; animation: fadeUp 0.9s 0.4s var(--ease) forwards;
    }
    .page-hero-label::before { content: ''; display: block; width: 32px; height: 1px; background: var(--gold); }
    .page-hero-h1 {
      font-family: var(--font-display); font-size: clamp(48px,6.5vw,88px); font-weight: 300;
      line-height: 1.05; color: var(--white); margin-bottom: 16px;
      opacity: 0; animation: fadeUp 0.9s 0.6s var(--ease) forwards;
    }
    .page-hero-h1 em { font-style: italic; color: var(--gold); }
    .page-hero-sub {
      font-family: var(--font-body); font-size: 14px; font-weight: 300;
      color: rgba(255,255,255,0.55); letter-spacing: 0.04em;
      opacity: 0; animation: fadeUp 0.9s 0.8s var(--ease) forwards;
    }
    @media (max-width: 768px) {
      #page-hero { height: 55vh; }
      .page-hero-content { padding: 0 24px 56px; }
      .page-hero-vline { display: none; }
    }

    /* =============================================
       OUR STORY
    ============================================= */
    #our-story { background: var(--offwhite); padding: 120px 80px; }
    .story-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 88px;
      align-items: start; max-width: 1280px; margin: 0 auto;
    }
    .story-h2 { font-family: var(--font-display); font-size: clamp(38px,4vw,58px); font-weight: 300; line-height: 1.12; color: var(--navy); margin-bottom: 28px; }
    .story-h2 em { font-style: italic; color: var(--gold); }
    .story-body { font-family: var(--font-body); font-size: 15px; font-weight: 300; color: #555; line-height: 1.9; margin-bottom: 20px; }

    /* Stat strip */
    .stat-strip { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; border-top: 1px solid rgba(10,22,40,0.1); margin-top: 52px; }
    .stat-item { padding: 28px 20px; border-right: 1px solid rgba(10,22,40,0.1); }
    .stat-item:last-child { border-right: none; }
    .stat-num { font-family: var(--font-display); font-size: clamp(40px,4.5vw,60px); font-weight: 300; color: var(--navy); line-height: 1; font-variant-numeric: tabular-nums; }
    .stat-suffix { color: var(--gold); }
    .stat-label { font-family: var(--font-body); font-size: 10px; font-weight: 400; letter-spacing: 0.2em; text-transform: uppercase; color: var(--grey); margin-top: 6px; }

    /* Story image */
    .story-image-wrap { position: relative; }
    .story-image-inner { position: relative; overflow: hidden; }
    .story-image-inner img { width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: center; display: block; }
    .story-image-inner::before {
      content: ''; position: absolute; top: -14px; right: -14px; width: 55%; height: 55%;
      border-top: 1px solid var(--gold); border-right: 1px solid var(--gold);
      opacity: 0.4; z-index: 0; pointer-events: none;
    }
    .story-badge {
      position: absolute; bottom: -20px; left: -20px; width: 108px; height: 108px;
      background: var(--gold); display: flex; flex-direction: column; align-items: center; justify-content: center; z-index: 2;
    }
    .story-badge-num { font-family: var(--font-display); font-size: 28px; font-weight: 400; color: var(--navy); line-height: 1; }
    .story-badge-text { font-family: var(--font-body); font-size: 8px; font-weight: 400; letter-spacing: 0.12em; text-transform: uppercase; color: var(--navy); text-align: center; margin-top: 4px; line-height: 1.4; padding: 0 8px; }

    @media (max-width: 900px) {
      #our-story { padding: 80px 24px; }
      .story-grid { grid-template-columns: 1fr; gap: 56px; }
      .story-image-wrap { order: -1; }
      .stat-strip { grid-template-columns: repeat(2,1fr); }
      .stat-item:nth-child(2) { border-right: none; }
      .stat-item:nth-child(3) { border-top: 1px solid rgba(10,22,40,0.1); }
      .stat-item:nth-child(4) { border-top: 1px solid rgba(10,22,40,0.1); border-right: none; }
    }

    /* =============================================
       DIFFERENTIATORS
    ============================================= */
    #differentiators { background: var(--navy); padding: 120px 80px; position: relative; overflow: hidden; }
    .diff-watermark {
      position: absolute; right: -60px; top: 50%; transform: translateY(-50%);
      font-family: var(--font-display); font-size: clamp(120px,18vw,220px); font-weight: 300;
      color: rgba(255,255,255,0.022); white-space: nowrap; pointer-events: none; user-select: none; letter-spacing: -0.03em;
    }
    .diff-inner { max-width: 1280px; margin: 0 auto; position: relative; z-index: 1; }
    .diff-header { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: end; margin-bottom: 72px; }
    .diff-h2 { font-family: var(--font-display); font-size: clamp(38px,4vw,56px); font-weight: 300; line-height: 1.12; color: var(--white); }
    .diff-h2 em { font-style: italic; color: var(--gold); }
    .diff-intro { font-family: var(--font-body); font-size: 14px; font-weight: 300; color: rgba(255,255,255,0.4); line-height: 1.85; }
    .diff-cards { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: rgba(201,168,76,0.08); }
    .diff-card { background: rgba(10,22,40,0.95); padding: 44px 32px; position: relative; overflow: hidden; transition: background var(--trans); }
    .diff-card:hover { background: rgba(13,31,60,0.98); }
    .diff-card::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--gold); transition: width 0.45s var(--ease); }
    .diff-card:hover::after { width: 100%; }
    .diff-card-num { font-family: var(--font-display); font-size: 52px; font-weight: 300; color: rgba(255,255,255,0.04); line-height: 1; margin-bottom: 20px; display: block; }
    .diff-card-icon { width: 30px; height: 30px; margin-bottom: 18px; color: var(--gold); }
    .diff-card-title { font-family: var(--font-display); font-size: 22px; font-weight: 400; color: var(--white); margin-bottom: 12px; line-height: 1.2; }
    .diff-card-body { font-family: var(--font-body); font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.38); line-height: 1.75; }
    @media (max-width: 900px) {
      #differentiators { padding: 80px 24px; }
      .diff-header { grid-template-columns: 1fr; gap: 24px; margin-bottom: 48px; }
      .diff-cards { grid-template-columns: repeat(2,1fr); }
    }
    @media (max-width: 540px) { .diff-cards { grid-template-columns: 1fr; } }

    /* =============================================
       OUR CAPABILITIES
    ============================================= */
    #capabilities { background: var(--offwhite); padding: 120px 80px; }
    .cap-inner { max-width: 1280px; margin: 0 auto; }
    .cap-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 60px; gap: 40px; }
    .cap-h2 { font-family: var(--font-display); font-size: clamp(36px,4vw,54px); font-weight: 300; color: var(--navy); line-height: 1.12; }
    .cap-h2 em { font-style: italic; color: var(--gold); }
    .cap-desc { font-family: var(--font-body); font-size: 14px; font-weight: 300; color: var(--grey); max-width: 340px; line-height: 1.8; text-align: right; }
    .cap-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; }
    .cap-card { position: relative; overflow: hidden; background: var(--stone); aspect-ratio: 4/3; display: block; }
    .cap-card img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 0.65s var(--ease); }
    .cap-card:hover img { transform: scale(1.06); }
    .cap-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,22,40,0.88) 0%, rgba(10,22,40,0.2) 55%, transparent 100%); transition: background var(--trans); }
    .cap-card:hover .cap-card-overlay { background: linear-gradient(to top, rgba(10,22,40,0.95) 0%, rgba(10,22,40,0.45) 70%, transparent 100%); }
    .cap-card-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 24px; }
    .cap-card-num { font-family: var(--font-display); font-size: 12px; font-weight: 300; color: var(--gold); letter-spacing: 0.1em; display: block; margin-bottom: 4px; }
    .cap-card-name { font-family: var(--font-display); font-size: 22px; font-weight: 400; color: var(--white); display: block; margin-bottom: 8px; }
    .cap-card-link { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-body); font-size: 10px; font-weight: 400; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); opacity: 0; transform: translateY(6px); transition: opacity 0.3s var(--ease), transform 0.3s var(--ease); }
    .cap-card:hover .cap-card-link { opacity: 1; transform: translateY(0); }
    @media (max-width: 900px) {
      #capabilities { padding: 80px 24px; }
      .cap-header { flex-direction: column; align-items: flex-start; }
      .cap-desc { text-align: left; max-width: 100%; }
      .cap-grid { grid-template-columns: repeat(2,1fr); }
    }
    @media (max-width: 540px) { .cap-grid { grid-template-columns: 1fr; } }

    /* =============================================
       VALUES
    ============================================= */
    #values { background: var(--navy); padding: 120px 80px; position: relative; overflow: hidden; }
    .values-watermark {
      position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
      font-family: var(--font-display); font-size: clamp(80px,16vw,240px); font-weight: 300;
      color: rgba(255,255,255,0.02); white-space: nowrap; pointer-events: none; user-select: none; letter-spacing: 0.06em;
    }
    .values-inner { max-width: 1280px; margin: 0 auto; position: relative; z-index: 1; }
    .values-pillars { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: rgba(201,168,76,0.08); margin-bottom: 96px; }
    .values-pillar { background: rgba(10,22,40,0.8); padding: 52px 40px; text-align: center; transition: background var(--trans); }
    .values-pillar:hover { background: rgba(13,31,60,0.95); }
    .pillar-icon { width: 38px; height: 38px; margin: 0 auto 22px; color: var(--gold); }
    .pillar-title { font-family: var(--font-display); font-size: 26px; font-weight: 400; color: var(--white); margin-bottom: 12px; }
    .pillar-body { font-family: var(--font-body); font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.38); line-height: 1.8; }
    .values-quote { text-align: center; max-width: 800px; margin: 0 auto; }
    .values-quote-mark { font-family: var(--font-display); font-size: 80px; font-weight: 300; color: var(--gold); line-height: 0.5; opacity: 0.35; display: block; margin-bottom: 20px; }
    .values-quote-text { font-family: var(--font-display); font-style: italic; font-size: clamp(26px,3.2vw,42px); font-weight: 300; color: var(--white); line-height: 1.45; margin-bottom: 28px; }
    .values-quote-text em { color: var(--gold); font-style: italic; }
    .values-quote-attr { font-family: var(--font-body); font-size: 10px; font-weight: 400; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.3); }
    .values-quote-btns { display: flex; gap: 16px; justify-content: center; margin-top: 40px; flex-wrap: wrap; }
    @media (max-width: 900px) {
      #values { padding: 80px 24px; }
      .values-pillars { grid-template-columns: 1fr; }
      .values-pillar { padding: 36px 28px; }
    }

    /* =============================================
       CONTACT CTA
    ============================================= */
    #contact-cta { background: var(--offwhite); padding: 96px 80px; }
    .contact-cta-inner { max-width: 1280px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 48px; }
    .contact-cta-h2 { font-family: var(--font-display); font-size: clamp(32px,3.5vw,50px); font-weight: 300; color: var(--navy); line-height: 1.15; margin-bottom: 14px; }
    .contact-cta-h2 em { font-style: italic; color: var(--gold); }
    .contact-cta-body { font-family: var(--font-body); font-size: 14px; font-weight: 300; color: var(--grey); line-height: 1.75; max-width: 480px; }
    .contact-cta-actions { display: flex; gap: 16px; flex-wrap: wrap; flex-shrink: 0; }
    @media (max-width: 900px) { #contact-cta { padding: 72px 24px; } .contact-cta-inner { flex-direction: column; align-items: flex-start; } }

    /* =============================================
       FOOTER
    ============================================= */
    #footer { background: #050D18; padding: 96px 80px 0; }
    .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.6fr; gap: 64px; max-width: 1280px; margin: 0 auto; padding-bottom: 64px; border-bottom: 1px solid rgba(255,255,255,0.06); }
    .footer-logo { height: 30px; width: auto; margin-bottom: 20px; }
    .footer-desc { font-family: var(--font-body); font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.35); line-height: 1.8; margin-bottom: 24px; max-width: 280px; }
    .footer-socials { display: flex; gap: 16px; flex-wrap: wrap; }
    .footer-social-link { color: rgba(255,255,255,0.35); transition: color var(--trans); }
    .footer-social-link:hover { color: var(--gold); }
    .footer-social-link svg { width: 16px; height: 16px; fill: currentColor; display: block; }
    .footer-col-title { font-family: var(--font-body); font-size: 10px; font-weight: 400; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-bottom: 20px; }
    .footer-links { list-style: none; }
    .footer-links li { margin-bottom: 10px; }
    .footer-links a { font-family: var(--font-body); font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.35); transition: color var(--trans); }
    .footer-links a:hover { color: var(--gold); }
    .footer-contact-list { list-style: none; }
    .footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; }
    .footer-contact-icon { flex-shrink: 0; width: 18px; height: 18px; margin-top: 1px; }
    .footer-contact-icon img { width: 18px; height: 18px; object-fit: contain; }
    .footer-contact-text { font-family: var(--font-body); font-size: 12px; font-weight: 300; color: rgba(255,255,255,0.35); line-height: 1.6; }
    .footer-contact-text a { transition: color var(--trans); }
    .footer-contact-text a:hover { color: var(--gold); }
    .footer-bottom { max-width: 1280px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; padding: 24px 0; }
    .footer-copy { font-family: var(--font-body); font-size: 12px; font-weight: 300; color: rgba(255,255,255,0.2); }
    .footer-tagline { font-family: var(--font-display); font-style: italic; font-size: 14px; color: var(--gold); opacity: 0.6; }
    @media (max-width: 1024px) { #footer { padding: 80px 48px 0; } .footer-grid { grid-template-columns: 1fr 1fr; gap: 48px; } }
    @media (max-width: 600px) { #footer { padding: 60px 24px 0; } .footer-grid { grid-template-columns: 1fr; gap: 40px; } .footer-bottom { flex-direction: column; gap: 10px; text-align: center; } }


  
    /* ── Focus-visible accessibility ─────────────────────────────── */
    :focus { outline: none; }
    :focus-visible {
      outline: 2px solid #C9A84C;
      outline-offset: 3px;
      border-radius: 2px;
    }
    .btn:focus-visible,
    .nav-cta:focus-visible {
      outline: 2px solid #C9A84C;
      outline-offset: 4px;
      box-shadow: 0 0 0 4px rgba(201,168,76,.18);
    }
    a:focus-visible { outline: 2px solid #C9A84C; outline-offset: 2px; }

  #ahl-loader{position:fixed;inset:0;z-index:9999;overflow:hidden;pointer-events:all;animation:_lf 0.01s 3s forwards;}@keyframes _lf{to{opacity:0;pointer-events:none;visibility:hidden;}}
  #ahl-half-t,#ahl-half-b{position:absolute;left:0;width:100%;height:50%;background:#0A1628;will-change:transform;}
  #ahl-half-t{top:0;}#ahl-half-b{bottom:0;}
  #ahl-blade{position:absolute;left:0;right:0;top:0;height:2px;z-index:10;will-change:transform;}
  .ahl-blade-line{width:100%;height:100%;background:linear-gradient(90deg,transparent 0%,rgba(201,168,76,.15) 2%,rgba(201,168,76,.65) 12%,#E8C97A 38%,#FFFDE7 50%,#E8C97A 62%,rgba(201,168,76,.65) 88%,rgba(201,168,76,.15) 98%,transparent 100%);box-shadow:0 0 4px 1px rgba(201,168,76,.95),0 0 14px 3px rgba(201,168,76,.55),0 0 36px 7px rgba(201,168,76,.2);}
  .ahl-blade-glow{position:absolute;left:0;right:0;top:0;height:30px;background:linear-gradient(180deg,rgba(201,168,76,.08) 0%,transparent 100%);transform:translateY(-28px);}
  #ahl-logo{position:absolute;inset:0;z-index:50;display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;padding:0 20px;}
  .ahl-logo-name{display:block;font-family:'Cormorant Garamond',Georgia,serif;font-size:clamp(22px,5.5vw,68px);font-weight:300;letter-spacing:.42em;padding-left:.42em;color:#C9A84C;text-transform:uppercase;text-shadow:0 0 40px rgba(201,168,76,.35);line-height:1.2;}
  .ahl-logo-div{display:block;width:50px;height:1px;background:linear-gradient(90deg,transparent,rgba(201,168,76,.45),transparent);margin:14px auto;}
  .ahl-logo-sub{display:block;font-family:'Jost',Arial,sans-serif;font-size:clamp(7px,1vw,10px);font-weight:300;letter-spacing:.55em;padding-left:.55em;color:rgba(201,168,76,.4);text-transform:uppercase;}
  .ahl-spark{position:fixed;border-radius:50%;pointer-events:none;z-index:10001;}
