
        :root {
            --color-bg: #f9fdfe;
            --color-dark: #1e1e1e;
            --color-dark-soft: #2a2a2a;
            --color-white: #fff;
            --color-gold: #d7be8e;
            --color-gold-dark: #8b6b30;
            --color-cream: #faf2e6;
            --color-tan: #f0e7d6;
            --color-gray: #7a7a7a;
            --color-gray-light: #b0b0b0;
            --color-overlay: rgba(0, 0, 0, 0.6);
            --font-heading: 'Frank Ruhl Libre', Georgia, serif;
            --font-body: 'Hedvig Letters Sans', 'Inter', sans-serif;
            --font-label: 'Syne', sans-serif;
            --font-mono: 'IBM Plex Mono', monospace;
            --nav-height: 80px;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-body);
            background: var(--color-bg);
            color: var(--color-dark);
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        img {
            max-width: 100%;
            display: block;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 40px;
        }

        /* ========== NAVIGATION ========== */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 0 40px;
            height: var(--nav-height);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.4s ease;
        }

        .header.scrolled {
            background: var(--color-dark);
        }

        .header-inner {
            width: 100%;
            max-width: 1600px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo img {
            height: 42px;
            width: auto;
        }

        .nav {
            display: flex;
            align-items: center;
            gap: 24px;
        }

        .nav a,
        .nav>div>a {
            font-family: var(--font-label);
            font-size: 12px;
            font-weight: 500;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.8);
            padding: 6px 0;
            transition: color 0.3s cubic-bezier(0.44, 0, 0.56, 1);
            position: relative;
        }

        .nav a:hover,
        .nav>div>a:hover {
            color: var(--color-gold);
        }

        .nav a.active {
            color: var(--color-gold);
        }

        .nav-dropdown {
            position: relative;
        }

        .nav-dropdown-content {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%) translateY(8px);
            background: var(--color-dark);
            min-width: 200px;
            padding: 12px 0;
            border-radius: 4px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
        }

        .nav-dropdown:hover .nav-dropdown-content {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0);
        }

        .nav-dropdown-content a {
            padding: 8px 24px;
            font-size: 11px;
            color: rgba(255, 255, 255, 0.7);
            white-space: nowrap;
        }

        .nav-dropdown-content a:hover {
            color: var(--color-gold);
        }

        .mobile-menu-btn {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 4px;
        }

        .mobile-menu-btn span {
            width: 28px;
            height: 1.5px;
            background: var(--color-white);
            transition: all 0.3s ease;
        }

        /* ========== HERO ========== */
        .hero-section {
            position: relative;
            height: 100vh;
            min-height: 700px;
            display: flex;
            align-items: center;
            overflow: hidden;
            background: var(--color-dark);
        }

        .hero-video {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.5) 40%, rgba(0, 0, 0, 0.85) 100%);
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            padding: 0 40px;
        }

        .hero-eyebrow {
            font-family: var(--font-label);
            font-size: 13px;
            font-weight: 500;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--color-gold);
            margin-bottom: 20px;
        }

        .hero-title {
            font-family: var(--font-heading);
            font-size: clamp(48px, 6vw, 72px);
            font-weight: 400;
            line-height: 1.05;
            letter-spacing: -0.02em;
            color: var(--color-white);
            margin-bottom: 24px;
        }

        .hero-title .char {
            display: inline-block;
            opacity: 0.001;
            filter: blur(8px);
            transform: translateY(16px) scale(0.95);
            animation: charAppear 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
        }

        @keyframes charAppear {
            0% {
                opacity: 0.001;
                filter: blur(8px);
                transform: translateY(16px) scale(0.95);
            }

            60% {
                opacity: 1;
                filter: blur(0);
                transform: translateY(-2px) scale(1);
            }

            100% {
                opacity: 1;
                filter: blur(0);
                transform: translateY(0) scale(1);
            }
        }

        .hero-sub {
            position: relative;
            overflow: hidden;
        }

        .hero-sub .word {
            display: inline-block;
            opacity: 0.001;
            transform: translateY(20px);
            animation: wordAppear 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
        }

        @keyframes wordAppear {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-sub-static {
            font-family: var(--font-body);
            font-size: 18px;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.75);
            max-width: 580px;
            margin-bottom: 36px;
        }

        .hero-actions {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }

        .btn-outline-light {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 12px 28px;
            border: 1px solid rgba(255, 255, 255, 0.4);
            border-radius: 100px;
            font-family: var(--font-label);
            font-size: 13px;
            font-weight: 500;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--color-white);
            transition: all 0.3s cubic-bezier(0.44, 0, 0.56, 1);
            cursor: pointer;
            background: transparent;
            position: relative;
            overflow: hidden;
        }

        .btn-outline-light::before {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(255, 255, 255, 0.08);
            transform: translateY(100%);
            transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            border-radius: 100px;
        }

        .btn-outline-light:hover::before {
            transform: translateY(0);
        }

        .btn-outline-light:hover {
            border-color: var(--color-white);
        }

        .btn-outline-light .arrow {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            border: 1px solid rgba(255, 255, 255, 0.4);
            font-size: 12px;
            transition: all 0.3s ease;
            position: relative;
            z-index: 1;
        }

        .btn-outline-light:hover .arrow {
            border-color: var(--color-white);
            background: var(--color-white);
            color: var(--color-dark);
        }

        .btn-fill-light {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 12px 28px;
            border: none;
            border-radius: 100px;
            font-family: var(--font-label);
            font-size: 13px;
            font-weight: 500;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--color-dark);
            background: var(--color-white);
            transition: all 0.3s cubic-bezier(0.44, 0, 0.56, 1);
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .btn-fill-light::before {
            content: '';
            position: absolute;
            inset: 0;
            background: var(--color-gold);
            transform: translateY(100%);
            transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            border-radius: 100px;
        }

        .btn-fill-light:hover::before {
            transform: translateY(0);
        }

        .btn-fill-light:hover {
            color: var(--color-white);
        }

        .btn-outline-light>span,
        .btn-fill-light>span {
            position: relative;
            z-index: 1;
        }

        .btn-outline-light .arrow {
            position: relative;
            z-index: 1;
        }

        /* ========== SECTION COMMON ========== */
        .section {
            padding: 120px 0;
        }

        .section-bg-light {
            background: var(--color-bg);
        }

        .section-bg-cream {
            background: var(--color-cream);
        }

        .section-bg-dark {
            background: var(--color-dark);
        }

        .section-bg-tan {
            background: var(--color-tan);
        }

        .section-number-wrap {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 32px;
        }

        .section-number {
            font-family: var(--font-mono);
            font-size: 12px;
            font-weight: 500;
            letter-spacing: -0.02em;
            text-transform: uppercase;
            color: var(--color-gray);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: var(--color-dark);
            color: var(--color-white);
        }

        .section-label {
            font-family: var(--font-label);
            font-size: 13px;
            font-weight: 500;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--color-gray);
        }

        .section-title {
            font-family: var(--font-heading);
            font-size: clamp(36px, 4vw, 56px);
            font-weight: 400;
            line-height: 1.08;
            letter-spacing: -0.02em;
            color: var(--color-dark);
            margin-bottom: 20px;
        }

        .section-title-light {
            color: var(--color-white);
        }

        .section-desc {
            font-size: 17px;
            line-height: 1.7;
            color: var(--color-gray);
            max-width: 640px;
        }

        .section-desc-light {
            color: rgba(255, 255, 255, 0.7);
        }

        /* ========== REVEAL ANIMATIONS ========== */
        .reveal {
            opacity: 0.001;
            transform: translateY(50px);
            transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .reveal-scale {
            opacity: 0.001;
            transform: scale(0.92);
            transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .reveal-scale.visible {
            opacity: 1;
            transform: scale(1);
        }

        .reveal-delay-1 {
            transition-delay: 0.1s;
        }

        .reveal-delay-2 {
            transition-delay: 0.2s;
        }

        .reveal-delay-3 {
            transition-delay: 0.3s;
        }

        .reveal-delay-4 {
            transition-delay: 0.4s;
        }

        .reveal-delay-5 {
            transition-delay: 0.5s;
        }

        .reveal-delay-6 {
            transition-delay: 0.6s;
        }

        .reveal-delay-7 {
            transition-delay: 0.7s;
        }

        .reveal-delay-8 {
            transition-delay: 0.8s;
        }

        /* Image clip reveal */
        .img-reveal {
            clip-path: inset(0 0 100% 0);
            transition: clip-path 1s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .reveal.visible .img-reveal,
        .img-reveal.visible {
            clip-path: inset(0 0 0 0);
        }

        .img-reveal-wrap {
            overflow: hidden;
            border-radius: 4px;
        }

        /* Cascade stagger for children */
        .cascade>.reveal:nth-child(1) {
            transition-delay: 0s;
        }

        .cascade>.reveal:nth-child(2) {
            transition-delay: 0.12s;
        }

        .cascade>.reveal:nth-child(3) {
            transition-delay: 0.24s;
        }

        .cascade>.reveal:nth-child(4) {
            transition-delay: 0.36s;
        }

        .cascade>.reveal:nth-child(5) {
            transition-delay: 0.48s;
        }

        .cascade>.reveal:nth-child(6) {
            transition-delay: 0.6s;
        }

        .cascade>.reveal:nth-child(7) {
            transition-delay: 0.72s;
        }

        .cascade>.reveal:nth-child(8) {
            transition-delay: 0.84s;
        }

        /* ========== SECTION 01 - ABOUT ========== */
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .about-image-wrap {
            position: relative;
            overflow: hidden;
            border-radius: 4px;
        }

        .about-image-wrap img {
            width: 100%;
            height: 480px;
            object-fit: cover;
            transition: transform 0.8s ease;
        }

        .about-image-wrap:hover img {
            transform: scale(1.03);
        }

        .about-image-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.5) 100%);
            pointer-events: none;
        }

        .stats-row {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            margin-top: 80px;
        }

        .stat-item-sagona {
            text-align: center;
        }

        .stat-number-sagona {
            font-family: var(--font-heading);
            font-size: clamp(36px, 3vw, 52px);
            font-weight: 400;
            color: var(--color-dark);
            line-height: 1.1;
            margin-bottom: 6px;
        }

        .stat-label-sagona {
            font-family: var(--font-label);
            font-size: 11px;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--color-gray);
        }

        /* ========== SECTION 02 - CAPABILITIES / CARDS ========== */
        .caps-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            margin-top: 60px;
        }

        .caps-left .section-desc {
            max-width: 100%;
        }

        .caps-right {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .cap-card {
            background: var(--color-white);
            border-radius: 4px;
            padding: 32px;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }

        .cap-card:hover {
            border-color: var(--color-tan);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
        }

        .cap-card-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
        }

        .cap-card-header-left {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .cap-card-icon {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--color-cream);
            flex-shrink: 0;
        }

        .cap-card-icon img {
            width: 22px;
            height: 22px;
            object-fit: contain;
        }

        .cap-card-title {
            font-family: var(--font-label);
            font-size: 13px;
            font-weight: 500;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            color: var(--color-dark);
        }

        .cap-card-toggle {
            font-size: 20px;
            color: var(--color-gray);
            transition: transform 0.3s ease;
            flex-shrink: 0;
        }

        .cap-card.open .cap-card-toggle {
            transform: rotate(45deg);
        }

        .cap-card-body {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.3s ease;
        }

        .cap-card.open .cap-card-body {
            max-height: 300px;
            padding-top: 20px;
        }

        .cap-card-body p {
            font-size: 15px;
            line-height: 1.7;
            color: var(--color-gray);
            margin-bottom: 16px;
        }

        .cap-card-cta {
            font-family: var(--font-label);
            font-size: 12px;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            color: var(--color-dark);
            transition: color 0.3s ease;
        }

        .cap-card-cta:hover {
            color: var(--color-gold-dark);
        }

        /* ========== SECTION 03 - STORYTELLING ========== */
        .story-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            margin-top: 60px;
        }

        .story-card {
            position: relative;
            overflow: hidden;
            border-radius: 4px;
            background: var(--color-white);
        }

        .story-card-img {
            position: relative;
            overflow: hidden;
            height: 280px;
        }

        .story-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s ease;
        }

        .story-card:hover .story-card-img img {
            transform: scale(1.05);
        }

        .story-card-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(195deg, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.6) 100%);
            pointer-events: none;
        }

        .story-card-number {
            position: absolute;
            bottom: 16px;
            left: 20px;
            font-family: var(--font-mono);
            font-size: 13px;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.8);
            letter-spacing: -0.02em;
        }

        .story-card-body {
            padding: 24px 20px 28px;
        }

        .story-card-body h3 {
            font-family: var(--font-heading);
            font-size: 20px;
            font-weight: 400;
            line-height: 1.3;
            margin-bottom: 10px;
            color: var(--color-dark);
        }

        .story-card-body p {
            font-size: 14px;
            line-height: 1.6;
            color: var(--color-gray);
        }

        /* ========== SECTION 04 - IMAGE PARALLAX / CTA ========== */
        .parallax-section {
            position: relative;
            min-height: 500px;
            display: flex;
            align-items: center;
            overflow: hidden;
            background: var(--color-dark);
        }

        .parallax-bg {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            opacity: 0.5;
        }

        .parallax-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 100%);
        }

        .parallax-content {
            position: relative;
            z-index: 2;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 40px;
        }

        .parallax-content h2 {
            font-family: var(--font-heading);
            font-size: clamp(32px, 3.5vw, 48px);
            font-weight: 400;
            line-height: 1.1;
            color: var(--color-white);
            margin-bottom: 16px;
        }

        .parallax-content p {
            font-size: 16px;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.6);
        }

        /* ========== SECTION 05 - INSIGHTS ========== */
        .insights-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 48px;
        }

        .insights-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .insight-card {
            padding: 40px 32px;
            background: var(--color-white);
            border-radius: 4px;
            transition: all 0.4s ease;
            border: 1px solid transparent;
        }

        .insight-card:hover {
            border-color: var(--color-tan);
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.04);
        }

        .insight-card h3 {
            font-family: var(--font-heading);
            font-size: 20px;
            font-weight: 400;
            line-height: 1.3;
            margin-bottom: 12px;
            color: var(--color-dark);
        }

        .insight-card p {
            font-size: 14px;
            line-height: 1.7;
            color: var(--color-gray);
            margin-bottom: 20px;
        }

        .insight-link {
            font-family: var(--font-label);
            font-size: 12px;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: var(--color-dark);
            transition: color 0.3s ease;
        }

        .insight-link:hover {
            color: var(--color-gold-dark);
        }

        /* ========== SECTION 06 - LEADERSHIP ========== */
        .team-grid-sagona {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            margin-top: 48px;
        }

        .team-card-sagona {
            position: relative;
            overflow: hidden;
            border-radius: 4px;
            background: var(--color-white);
            transition: transform 0.4s ease;
        }

        .team-card-sagona:hover {
            transform: translateY(-4px);
        }

        .team-card-sagona img {
            width: 100%;
            height: 340px;
            object-fit: cover;
            transition: transform 0.8s ease;
        }

        .team-card-sagona:hover img {
            transform: scale(1.03);
        }

        .team-card-sagona .team-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.5) 100%);
            pointer-events: none;
        }

        .team-info-sagona {
            padding: 20px;
        }

        .team-info-sagona .name {
            font-family: var(--font-heading);
            font-size: 17px;
            font-weight: 400;
            color: var(--color-dark);
            margin-bottom: 4px;
        }

        .team-info-sagona .role {
            font-family: var(--font-label);
            font-size: 11px;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: var(--color-gray);
        }

        /* ========== SECTION 07 - DUAL CTA ========== */
        .dual-cta {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin-top: 48px;
        }

        .dual-cta-card {
            position: relative;
            min-height: 360px;
            display: flex;
            align-items: flex-end;
            padding: 40px;
            overflow: hidden;
            border-radius: 4px;
            background: var(--color-dark);
        }

        .dual-cta-card img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.4;
            transition: transform 0.8s ease, opacity 0.4s ease;
        }

        .dual-cta-card:hover img {
            transform: scale(1.03);
            opacity: 0.5;
        }

        .dual-cta-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
            pointer-events: none;
        }

        .dual-cta-content {
            position: relative;
            z-index: 2;
            max-width: 320px;
        }

        .dual-cta-content h3 {
            font-family: var(--font-heading);
            font-size: 28px;
            font-weight: 400;
            color: var(--color-white);
            margin-bottom: 10px;
            line-height: 1.15;
        }

        .dual-cta-content p {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 20px;
            line-height: 1.6;
        }

        /* ========== FOOTER ========== */
        .footer {
            background: var(--color-dark);
            padding: 80px 0 40px;
            color: rgba(255, 255, 255, 0.6);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 60px;
            margin-bottom: 60px;
        }

        .footer-logo img {
            height: 36px;
            opacity: 0.9;
        }

        .footer p {
            font-size: 14px;
            line-height: 1.7;
            margin-top: 16px;
        }

        .footer h4 {
            font-family: var(--font-label);
            font-size: 11px;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--color-gray-light);
            margin-bottom: 20px;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.5);
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--color-gold);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding-top: 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 13px;
        }

        .social-links {
            display: flex;
            gap: 20px;
        }

        .social-links a {
            color: rgba(255, 255, 255, 0.4);
            transition: color 0.3s ease;
            font-size: 13px;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            font-family: var(--font-label);
            font-size: 11px;
        }

        .social-links a:hover {
            color: var(--color-gold);
        }

        /* ========== SECTION 02B - WHERE WE INVEST ========== */
        .invest-section {
            background: var(--color-dark);
            padding: 120px 0;
        }

        .invest-section .section-number {
            background: rgba(255, 255, 255, 0.15);
            color: var(--color-white);
        }

        .invest-section .section-label {
            color: rgba(255, 255, 255, 0.5);
        }

        .invest-section .section-title {
            color: var(--color-white);
        }

        .invest-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 8px;
            margin-top: 60px;
        }

        .invest-card {
            position: relative;
            min-height: 480px;
            display: flex;
            align-items: flex-end;
            overflow: hidden;
            cursor: pointer;
            border-radius: 4px;
        }

        .invest-card-bg {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center;
            transition: transform 0.8s ease, opacity 0.4s ease;
        }

        .invest-card:hover .invest-card-bg {
            transform: scale(1.05);
        }

        .invest-card-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.8) 100%);
            transition: opacity 0.4s ease;
        }

        .invest-card:hover .invest-card-overlay {
            background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.85) 100%);
        }

        .invest-card-content {
            position: relative;
            z-index: 2;
            padding: 50px 40px;
            width: 100%;
        }

        .invest-card-number {
            font-family: var(--font-mono);
            font-size: 13px;
            font-weight: 500;
            letter-spacing: -0.02em;
            color: var(--color-gold);
            margin-bottom: 12px;
        }

        .invest-card-content h3 {
            font-family: var(--font-heading);
            font-size: clamp(28px, 2.5vw, 36px);
            font-weight: 400;
            color: var(--color-white);
            line-height: 1.1;
            margin-bottom: 12px;
        }

        .invest-card-content p {
            font-size: 14px;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.65);
            max-width: 400px;
        }

        .invest-card-cta {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            margin-top: 20px;
            font-family: var(--font-label);
            font-size: 11px;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--color-gold);
            transition: color 0.3s ease;
        }

        .invest-card-cta:hover {
            color: var(--color-white);
        }

        /* ========== TESTIMONIAL SECTION ========== */
        .testimonial-section {
            background: var(--color-cream);
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        .testimonial-viewport {
            max-width: 800px;
            margin: 0 auto;
            overflow: hidden;
            position: relative;
        }

        .testimonial-track {
            display: flex;
            transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .testimonial-slide {
            flex: 0 0 100%;
            max-width: 100%;
            text-align: center;
            padding: 0 24px;
        }

        .testimonial-quote-mark {
            font-family: var(--font-heading);
            font-size: 80px;
            line-height: 1;
            color: var(--color-gold);
            opacity: 0.4;
            margin-bottom: -20px;
        }

        .testimonial-text {
            font-family: var(--font-heading);
            font-size: clamp(22px, 2.5vw, 32px);
            font-weight: 400;
            line-height: 1.4;
            color: var(--color-dark);
            font-style: italic;
            margin-bottom: 32px;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
        }

        .testimonial-avatar {
            width: 52px;
            height: 52px;
            border-radius: 50%;
            object-fit: cover;
        }

        .testimonial-author-info {
            text-align: left;
        }

        .testimonial-author-name {
            font-family: var(--font-label);
            font-size: 12px;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: var(--color-dark);
        }

        .testimonial-author-role {
            font-size: 13px;
            color: var(--color-gray);
        }

        .testimonial-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 40px;
        }

        .testimonial-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            border: none;
            background: var(--color-gray-light);
            cursor: pointer;
            transition: background 0.3s ease, transform 0.3s ease;
            padding: 0;
        }

        .testimonial-dot.active {
            background: var(--color-gold-dark);
            transform: scale(1.3);
        }

        /* ========== PRESENCE / DUAL JURISDICTION ========== */
        .presence-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin-top: 48px;
        }

        .presence-card {
            position: relative;
            min-height: 340px;
            display: flex;
            align-items: flex-end;
            padding: 40px;
            overflow: hidden;
            border-radius: 4px;
            background: var(--color-dark);
        }

        .presence-card-bg {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center;
            opacity: 0.4;
            transition: transform 0.8s ease, opacity 0.4s ease;
        }

        .presence-card:hover .presence-card-bg {
            transform: scale(1.03);
            opacity: 0.5;
        }

        .presence-card-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.7) 100%);
            pointer-events: none;
        }

        .presence-content {
            position: relative;
            z-index: 2;
        }

        .presence-content h3 {
            font-family: var(--font-heading);
            font-size: 26px;
            font-weight: 400;
            color: var(--color-white);
            margin-bottom: 6px;
        }

        .presence-content .presence-tag {
            font-family: var(--font-label);
            font-size: 10px;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--color-gold);
            margin-bottom: 12px;
        }

        .presence-content p {
            font-size: 14px;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.6);
            max-width: 320px;
        }
        /* ========== SUBSCRIBE ========== */
        .subscribe-section {
        padding: 120px 0;
        position: relative;
        background: url('../images/bg3.jpg') center / cover no-repeat fixed;
        }
        .subscribe-section .container { position: relative; z-index: 1; }
        .subscribe-row {
        display: flex;
        align-items: center;
        gap: 60px;
        }
        .subscribe-col-1 { flex: 0 0 380px; padding-right: 40px; }
        .subscribe-col-2 { flex: 1; min-width: 0; }
        .subscribe-headline {
        font-family: var(--font-heading);
        font-size: clamp(28px, 3vw, 38px);
        font-weight: 500;
        line-height: 1.2;
        color: var(--color-cream);
        margin: 0 0 16px;
        }
        .subscribe-desc {
        font-family: var(--font-body);
        font-size: 16px;
        line-height: 1.6;
        color: rgba(250,242,230,0.7);
        margin: 0;
        }
        .subscribe-form-inline {
        display: flex;
        gap: 12px;
        width: 100%;
        }
        .subscribe-input-wrap { flex: 1; min-width: 0; }
        .subscribe-label {
        display: block;
        font-family: var(--font-label);
        font-size: 11px;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: var(--color-gold);
        margin-bottom: 8px;
        }
        .subscribe-input {
        width: 90%;
        padding: 14px 18px;
        background: rgba(250,242,230,0.08);
        border: 1px solid rgba(250,242,230,0.2);
        border-radius: 6px;
        font-family: var(--font-body);
        font-size: 15px;
        color: var(--color-cream);
        outline: none;
        transition: border-color 0.3s ease;
        box-sizing: border-box;
        }
        .subscribe-input::placeholder { color: rgba(250,242,230,0.35); }
        .subscribe-input:focus { border-color: var(--color-gold); }
        .subscribe-note {
        font-size: 12px;
        color: rgba(250,242,230,0.45);
        margin-top: 10px;
        line-height: 1.5;
        }
        /* ========== PAGE HEADER (BREADCRUMB + TITLE OVER IMAGE) ========== */
        .page-header-section {
            position: relative;
            min-height: 500px;
            display: flex;
            align-items: flex-end;
            overflow: hidden;
            background: var(--color-dark);
        }
        .page-header-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.85) 100%);
        }
        .page-header-content {
            position: relative;
            z-index: 2;
            padding: 180px 0 80px;
            width: 100%;
        }
        .breadcrumb {
            font-family: var(--font-label);
            font-size: 12px;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: rgba(255,255,255,0.6);
            margin-bottom: 16px;
        }
        .breadcrumb a { color: rgba(255,255,255,0.6); transition: color 0.3s ease; }
        .breadcrumb a:hover { color: var(--color-gold); }
        .breadcrumb span { color: rgba(255,255,255,0.6); }
        .breadcrumb .current { color: var(--color-gold); }
        .page-header-title {
            font-family: var(--font-heading);
            font-size: clamp(42px, 5vw, 64px);
            font-weight: 400;
            line-height: 1.05;
            letter-spacing: -0.02em;
            color: var(--color-white);
        }
        /* ========== STATS TIMELINE (GRID) ========== */
        .stats-timeline {
            margin-top: 60px;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }
        .stats-timeline-item {
            padding: 32px;
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 4px;
            position: relative;
        }
        .stats-timeline-bar {
            width: 40px;
            height: 3px;
            border-radius: 2px;
            background: linear-gradient(90deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
            margin-bottom: 20px;
        }
        .stats-timeline-number {
            font-family: var(--font-heading);
            font-size: clamp(32px, 3vw, 48px);
            font-weight: 400;
            color: var(--color-white);
            line-height: 1.1;
            margin-bottom: 4px;
        }
        .stats-timeline-label {
            font-family: var(--font-label);
            font-size: 12px;
            font-weight: 500;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--color-gold);
            margin-bottom: 8px;
        }
        .stats-timeline-desc {
            font-size: 14px;
            line-height: 1.6;
            color: rgba(255,255,255,0.55);
        }
        @media (max-width: 1024px) {
            .stats-timeline { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 540px) {
            .stats-timeline { grid-template-columns: 1fr; }
        }
        /* ========== CONTENT GRID (2-COLUMN TEXT LAYOUT) ========== */
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: start;
        }
        .content-grid-left .section-label { margin-bottom: 16px; }
        .content-grid-left .section-title { margin-bottom: 0; }
        .content-grid-right .section-desc { max-width: 100%; margin-bottom: 20px; }
        /* ========== GRID VARIANTS ========== */
        .grid-3 {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-top: 48px;
        }
        .grid-4 {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            margin-top: 48px;
        }
        /* ========== ICON CARDS ========== */
        .icon-card {
            background: var(--color-white);
            border-radius: 4px;
            padding: 40px 32px;
            transition: all 0.4s ease;
            border: 1px solid transparent;
        }
        .icon-card:hover {
            border-color: var(--color-tan);
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(0,0,0,0.04);
        }
        .icon-card-icon {
            width: 48px;
            height: 48px;
            margin-bottom: 20px;
            color: var(--color-gold-dark);
        }
        .icon-card-icon svg {
            width: 100%;
            height: 100%;
            fill: currentColor;
        }
        .icon-card-title {
            font-family: var(--font-label);
            font-size: 13px;
            font-weight: 500;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            color: var(--color-dark);
            margin-bottom: 12px;
        }
        .icon-card-desc {
            font-size: 14px;
            line-height: 1.7;
            color: var(--color-gray);
        }
        /* ========== IMAGE CARDS ========== */
        .img-card {
            position: relative;
            overflow: hidden;
            border-radius: 4px;
            min-height: 320px;
            display: flex;
            align-items: flex-end;
        }
        .img-card img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s ease;
        }
        .img-card:hover img { transform: scale(1.03); }
        .img-card-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.6) 100%);
            pointer-events: none;
        }
        .img-card-content {
            position: relative;
            z-index: 2;
            padding: 32px;
        }
        .img-card-content h4 {
            font-family: var(--font-heading);
            font-size: 18px;
            font-weight: 400;
            color: var(--color-white);
            margin-bottom: 6px;
        }
        .img-card-content p {
            font-size: 13px;
            color: rgba(255,255,255,0.7);
            line-height: 1.5;
        }
        /* ========== CONTENT BOX (CORE AREAS LIST) ========== */
        .content-box {
            background: rgba(255,255,255,0.06);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 4px;
            padding: 32px;
        }
        .content-box h3 {
            font-family: var(--font-label);
            font-size: 13px;
            font-weight: 500;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            color: var(--color-gold);
        }
        .content-box ul {
            list-style: none;
            margin-top: 16px;
        }
        .content-box ul li {
            font-family: var(--font-body);
            font-size: 15px;
            color: rgba(255,255,255,0.7);
            padding: 8px 0;
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }
        .content-box ul li:last-child { border-bottom: none; }
        /* ========== TEAM ROLE ========== */
        .team-role {
            font-family: var(--font-label);
            font-size: 11px;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: var(--color-gray);
            margin-top: 6px;
            font-weight: 400;
        }
        /* ========== TEXT HELPERS ========== */
        .text-center { text-align: center; }
        .text-center .section-title { margin-left: auto; margin-right: auto; }
        .section-header {
            margin-bottom: 32px;
        }
        .section-header.text-center .section-title { margin: 0 auto; }
        /* ========== FOOTER TITLE/DESC ========== */
        .footer-title {
            font-family: var(--font-label);
            font-size: 11px;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--color-gray-light);
            margin-bottom: 20px;
        }
        .footer-description {
            font-size: 14px;
            line-height: 1.7;
            margin-top: 16px;
        }
        @media (max-width: 1200px) {
            .story-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .team-grid-sagona {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 1024px) {
            .about-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .caps-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .stats-row {
                grid-template-columns: repeat(2, 1fr);
                gap: 32px;
            }

            .dual-cta {
                grid-template-columns: 1fr;
            }

            .presence-grid {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 40px;
            }
            .content-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }
            .grid-3, .grid-4 {
                grid-template-columns: repeat(2, 1fr);
            }
            .page-header-section {
                min-height: 360px;
            }
        }

        @media (max-width: 810px) {
            .container {
                padding: 0 24px;
            }

            .header {
                padding: 0 24px;
            }

            .hero-content {
                padding: 0 24px;
            }

            .invest-grid {
                grid-template-columns: 1fr;
            }

            .invest-card {
                min-height: 360px;
            }

            .nav {
                display: none;
            }

            .nav.active {
                display: flex;
                flex-direction: column;
                position: fixed;
                top: var(--nav-height);
                left: 0;
                right: 0;
                background: var(--color-dark);
                padding: 24px 32px;
                gap: 16px;
                align-items: flex-start;
            }

            .mobile-menu-btn {
                display: flex;
            }

            .nav-dropdown-content {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                background: transparent;
                padding: 8px 0 0 16px;
            }

            .insights-grid {
                grid-template-columns: 1fr;
            }

            .story-grid {
                grid-template-columns: 1fr;
            }

            .team-grid-sagona {
                grid-template-columns: 1fr 1fr;
            }

            .team-card-sagona img {
                height: 260px;
            }

            .parallax-content {
                flex-direction: column;
                align-items: flex-start;
            }

            .parallax-section {
                min-height: 400px;
            }
            .grid-3, .grid-4, .img-card {
                grid-template-columns: 1fr;
            }
            .img-card { min-height: 240px; }
            .icon-card { padding: 28px 24px; }
        }

        @media (max-width: 540px) {
            .section {
                padding: 80px 0;
            }

            .team-grid-sagona {
                grid-template-columns: 1fr;
            }

            .stats-row {
                grid-template-columns: 1fr 1fr;
                gap: 24px;
            }

            .hero-actions {
                flex-direction: column;
            }

            .footer-grid {
                grid-template-columns: 1fr;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 12px;
                text-align: center;
            }
            .grid-3, .grid-4, .content-grid {
                grid-template-columns: 1fr;
            }
        }
