
        :root {
            color-scheme: light;
            --sidebar-width: 270px;
            --bg: #dbe5f6;
            --text: #1f3157;
            --muted: #4c5e82;
            --accent: #264986;
            --accent-strong: #17366d;
            --shadow: 0 24px 80px rgba(16, 37, 77, 0.16);
        }

        * {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            min-height: 100vh;
            font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
            color: var(--text);
            background:
                radial-gradient(circle at top right, rgba(255, 255, 255, 0.7), transparent 32%),
                linear-gradient(180deg, #d7e2f6 0%, #edf2fb 100%);
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        button {
            font: inherit;
        }

        .site-shell {
            min-height: 100vh;
        }

        .mobile-topbar {
            position: sticky;
            top: 0;
            z-index: 45;
            display: none;
            align-items: center;
            justify-content: space-between;
            padding: 1.3rem 1.5rem;
            background: #ffffff;
        }

        .brand-lockup {
            display: inline-flex;
            align-items: center;
        }

        .brand-logo {
            display: block;
            width: 190px;
            height: auto;
        }

        .menu-toggle {
            position: relative;
            z-index: 60;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 42px;
            height: 34px;
            border: none;
            background: transparent;
            box-shadow: none;
            cursor: pointer;
            padding: 0;
            color: var(--accent-strong);
        }

        .menu-toggle span,
        .menu-toggle span::before,
        .menu-toggle span::after {
            display: block;
            width: 28px;
            height: 2.5px;
            border-radius: 999px;
            background: currentColor;
            transition: transform 0.28s ease, opacity 0.2s ease, top 0.28s ease;
            content: "";
        }

        .menu-toggle span {
            position: relative;
        }

        .menu-toggle span::before {
            position: absolute;
            top: -8px;
            left: 0;
        }

        .menu-toggle span::after {
            position: absolute;
            top: 8px;
            left: 0;
        }

        .menu-open .menu-toggle span {
            background: transparent;
        }

        .menu-open .menu-toggle span::before {
            top: 0;
            transform: rotate(45deg);
        }

        .menu-open .menu-toggle span::after {
            top: 0;
            transform: rotate(-45deg);
        }

        .page-sidebar {
            position: fixed;
            top: 0;
            left: 0;
            bottom: 0;
            z-index: 40;
            display: flex;
            flex-direction: column;
            width: var(--sidebar-width);
            padding: 3rem 2.1rem 2.5rem;
            background: #ffffff;
            overflow: visible;
        }

        @media (max-width: 860px) {
    .sidebar-brand {
        display: none;
    }
}

        .sidebar-body {
            display: flex;
            flex: 1;
            flex-direction: column;
            margin-top: 4rem;
        }

        .site-nav {
            display: grid;
            gap: 2.3rem;
        }

        .nav-link {
            position: relative;
            display: flex;
            align-items: center;
            width: 100%;
            font-size: 1.4rem;
            line-height: 1.1;
            color: #264986;
            transition: color 0.2s ease;
        }

.nav-link::after {
    content: "";
    position: absolute;
    top: 50%;
    left: calc(85% ); /* start right after text */

    width: 60px; /* control length here */
    height: 4px;

    border-radius: 999px;
    background: var(--accent-strong);

    transform: translateY(-50%) scaleX(0);
    transform-origin: right;

    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover::after,
.nav-link[aria-current="page"]::after {
    transform: translateY(-50%) scaleX(1);
}

        .nav-link:hover {
            color: var(--accent-strong);
        }


        .nav-link[aria-current="page"] {
            color: var(--accent-strong);
            font-weight: 500;
        }

       .sidebar-watermark {
    margin-top: 5rem;
    display: flex;
    justify-content: center;
}

        .sidebar-watermark img {
            display: block;
            width: 280px;
            max-width: none;
            transform: translateX(-55px);
        }

        .sidebar-footer {
            margin-top: auto;
            display: grid;
            gap: 1rem;
        }
@media (max-width: 860px) {
    .collective-hero,
    .about-hero {
        margin-bottom: 0;
    }
}
@media (max-width: 860px) {
    .menu-open .collective-jump-nav,
    .menu-open .section-jump-nav {
        display: none;
    }

    .collective-jump-nav,
    .section-jump-nav {
        position: sticky;
        top: 72px;
        z-index: 35;
        grid-template-columns: 1fr;
        min-height: auto;
        background: #ffffff;
    }

    .collective-jump-label,
    .jump-label {
        display: none;
    }

    .collective-jump-links,
    .jump-links {
        display: flex;
        justify-content: flex-start;
        overflow-x: auto;
        gap: 28px;
        padding: 0 24px;
        scrollbar-width: none;
    }

    .collective-jump-links::-webkit-scrollbar,
    .jump-links::-webkit-scrollbar {
        display: none;
    }

    .collective-jump-links a,
    .jump-links a {
        padding: 24px 0;
        font-size: 0.95rem;
        white-space: nowrap;
    }
}
section {
    scroll-margin-top: 140px;
}
@media (max-width: 860px) {
    .mobile-topbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 80;
    }

    .page-sidebar {
        padding-top: 7rem;
    }

    body {
        padding-top: 82px;
    }

    .menu-open {
        overflow: hidden;
    }
}
        .footer-link {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            font-size: 1.15rem;
            color: var(--accent-strong);
        }

        .footer-arrow {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 28px;
            height: 28px;
            border: 1.5px solid var(--accent-strong);
            border-radius: 50%;
            font-size: 1.5rem;
            line-height: 1;
        }

        .footer-note {
            display: none;
        }

        .page-content {
            margin-left: var(--sidebar-width);
            min-height: 100vh;
            padding: 2rem;
        }

        .content-inner {
            min-height: calc(100vh - 4rem);
            padding: clamp(1.5rem, 3vw, 3rem);
            border-radius: 32px;
            background:
                radial-gradient(circle at top right, rgba(255, 255, 255, 0.78), transparent 34%),
                linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(221, 231, 247, 0.78) 100%);
            box-shadow: var(--shadow);
        }

        .content-header {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            gap: 1rem;
            margin-bottom: 2.5rem;
        }

        .contact-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 164px;
            padding: 0.85rem 1.5rem;
            border-radius: 999px;
            background: var(--accent);
            color: #fff;
            font-weight: 700;
            letter-spacing: 0.02em;
            box-shadow: 0 18px 28px rgba(23, 54, 109, 0.22);
        }

        .contact-button:hover {
            background: var(--accent-strong);
        }

        h1 {
            margin: 0 0 1rem;
            max-width: 12ch;
            font-family: Georgia, "Times New Roman", serif;
            font-size: clamp(2.3rem, 5vw, 4.3rem);
            line-height: 1.02;
        }

        h2 {
            margin: 0;
            font-family: Georgia, "Times New Roman", serif;
            font-size: clamp(1.7rem, 3vw, 2.7rem);
            line-height: 1.1;
        }

        p {
            margin: 0 0 1rem;
            max-width: 62ch;
            color: var(--muted);
            line-height: 1.75;
        }

        .drawer-backdrop {
            display: none;
        }

        @media (max-width: 860px) {
            .mobile-topbar {
                display: flex;
            }

            .mobile-topbar .brand-logo {
                width: 180px;
            }

            .page-sidebar {
                width: 100vw;
                padding: 5.2rem 3.7rem 2.7rem;
                transform: translateX(-105%);
                transition: transform 0.32s ease;
                box-shadow: none;
                overflow: hidden;
            }

            .menu-open {
                overflow: hidden;
            }

            .menu-open .page-sidebar {
                transform: translateX(0);
            }

            .brand-logo {
                width: 220px;
            }

.sidebar-body {
    margin-top: 3.5rem;
}

           .site-nav {
    gap: 1.6rem;
}

            .nav-link {
                font-size: 1.5rem;
            }

            .nav-link::after {
                left: calc(100% + 1.1rem);
                width: 0;
                height: 4px;
            }

        .nav-link:hover::after,
.nav-link[aria-current="page"]::after {
    width: 180px;
}

            .sidebar-watermark {
                margin-top: 5rem;
            }

            .sidebar-watermark img {
    width: 260px;
    transform: translateX(-40px);
}

            .footer-link {
                font-size: 1.2rem;
            }

            .page-content {
                margin-left: 0;
                padding: 1rem;
            }

            .content-inner {
                min-height: auto;
                padding: 1.25rem;
                border-radius: 24px;
            }

            .content-header {
                justify-content: flex-start;
            }
        }

        @media (min-width: 861px) {
            .page-sidebar {
                transform: none !important;
            }
        }

        
    .about-page .page-content {
        padding: 0;
    }

  .about-page .content-inner {
    min-height: 100vh;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    background: #ffffff;
    overflow: visible; /* important */
}

    .about-page .content-header,
    .about-page .site-footer {
        display: none;
    }
.about-hero {
    position: relative;
}

.about-top {
    position: absolute;
    top: 24px;
    right: 32px;
    z-index: 2;
}

@media (max-width: 860px) {
    .about-top {
        top: 20px;
        right: 20px;
    }

    .about-top .contact-button {
        min-width: 148px;
        padding: 0.8rem 1.15rem;
    }
}
    .about-hero {
        position: relative;
        min-height: calc(100vh - 82px);
        background-image: url('/assets/img/About.webp'); /* change to your local image */
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        display: flex;
        align-items: center;
        padding: 70px 64px;
    }

    .about-hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.78) 0%,
            rgba(255, 255, 255, 0.54) 42%,
            rgba(255, 255, 255, 0.08) 100%
        );
    }

    .about-hero-content {
        position: relative;
        z-index: 1;
        max-width: 750px;
    }

    .about-hero-title {
        max-width: 12ch;
        margin: 0 0 34px;
        color: #142544;
        font-family: Georgia, "Times New Roman", serif;
        font-size: clamp(3rem, 5.4vw, 5rem);
        line-height: 0.98;
        letter-spacing: -0.035em;
    }

    .about-hero-title span {
        color: #284f87;
    }

    .about-hero-text {
        max-width: 690px;
        margin: 0;
        color: #243a63;
        font-size: 1.05rem;
        line-height: 1.55;
    }

    .about-hero-logo {
        margin-top: 46px;
    }

    .about-hero-logo img {
        width: 330px;
        max-width: 100%;
        height: auto;
    }

    .section-jump-nav {
        display: grid;
        grid-template-columns: 330px 1fr;
        min-height: 82px;
        background: #ffffff;
        border-bottom: 1px solid rgba(20, 37, 68, 0.08);
    }
.section-jump-nav {
    position: sticky;
    top: 0;
    z-index: 30;
}
    .jump-label {
        display: flex;
        align-items: center;
        padding: 0 56px;
        background: #2f5e93;
        color: #ffffff;
        font-family: Georgia, "Times New Roman", serif;
        font-size: 1.25rem;
        font-weight: 700;
        text-transform: uppercase;
    }

    .jump-links {
        display: flex;
        align-items: center;
        justify-content: space-around;
        gap: 34px;
        padding: 0 38px;
    }

    .jump-links a {
        position: relative;
        padding: 29px 0 26px;
        color: #2a4e84;
        font-family: Georgia, "Times New Roman", serif;
        font-size: 1.05rem;
        font-weight: 700;
        text-transform: uppercase;
        white-space: nowrap;
    }

    .jump-links a::after {
        content: "";
        position: absolute;
        left: 50%;
        bottom: 15px;
        width: 0;
        height: 3px;
        background: #b99a72;
        transform: translateX(-50%);
        transition: width 0.25s ease;
    }

    .jump-links a::before {
        content: "";
        position: absolute;
        left: 50%;
        bottom: 11px;
        width: 9px;
        height: 9px;
        background: #b99a72;
        opacity: 0;
        transform: translateX(-50%) rotate(45deg);
        transition: opacity 0.25s ease;
    }

    .jump-links a:hover::after,
    .jump-links a.is-active::after {
        width: 100%;
    }

    .jump-links a:hover::before,
    .jump-links a.is-active::before {
        opacity: 1;
    }

    .about-section {
        min-height: 100vh;
        padding: 90px 70px;
        background: #ffffff;
    }

    @media (max-width: 860px) {
        .about-hero {
            min-height: 78vh;
            padding: 50px 24px;
            background-position: center;
        }

        .about-hero-title {
            font-size: clamp(2.4rem, 12vw, 4rem);
        }

        .about-hero-logo img {
            width: 230px;
        }

        .section-jump-nav {
            grid-template-columns: 1fr;
        }

        .jump-label {
            min-height: 64px;
            padding: 0 24px;
        }

        .jump-links {
            justify-content: flex-start;
            overflow-x: auto;
            gap: 28px;
            padding: 0 24px;
        }

        .jump-links a {
            font-size: 0.95rem;
        }

        .about-section {
            padding: 60px 24px;
        }
    }
    /* ========================= */
/* WHO WE ARE SECTION */
/* ========================= */

.who-section {
    padding: 100px 70px;
    background: #f5f7fb;
}

/* HEADER */
.who-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 70px;
}

.who-header h2 {
    font-size: 1.9rem;
    font-weight: 700;
    color: #2a4e84;
    letter-spacing: 0.04em;
}

.who-line {
    flex: 1;
    height: 2px;
    background: #2a4e84;
}

/* GRID */
.who-container {
    display: grid;
    grid-template-columns: 420px 1fr;
    align-items: center;
    gap: 60px;
}

/* IMAGE */
.who-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* CONTENT BOX */
.who-content {
    border: 2px solid #c5a06a;
    padding: 60px 70px;
    background: #ffffff;
}

.who-content h3 {
    text-align: center;
    font-family: Georgia, serif;
    font-size: 2rem;
    color: #2a4e84;
    margin-bottom: 30px;
}

.who-content p {
    font-size: 0.98rem;
    line-height: 1.75;
    color: #2f456e;
    margin-bottom: 18px;
}

/* RESPONSIVE */
@media (max-width: 860px) {
    .who-section {
        padding: 60px 24px;
    }

    .who-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .who-content {
        padding: 30px 24px;
    }

    .who-header {
        margin-bottom: 40px;
    }
}
.history-section {
    padding: 90px 70px 110px;
    background: #f4f6fa;
}

.section-title-small {
    display: inline-grid;
    gap: 8px;
    margin-bottom: 60px;
}

.section-title-small span {
    display: block;
    width: 220px;
    height: 1px;
    background: #2a4e84;
}

.section-title-small h2 {
    margin: 0;
    color: #244a83;
    font-size: 1.25rem;
    font-style: italic;
    font-weight: 800;
}

.profile-btn {
    display: inline-flex;
    align-items: center;
    gap: 16px;

    font-family: Georgia, serif;
    font-style: italic;
    font-size: 1.6rem;

    color: #b99a72;
}

.profile-arrow {
    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: #2f5e93;
    color: #f2b85d;

    font-size: 1.8rem;
    transition: transform 0.25s ease;
}
.who-cta {
    grid-column: 2;          /* aligns with content box */
    margin-top: 24px;
    display: flex;
    justify-content: flex-end;
}
.profile-btn:hover .profile-arrow {
    transform: translateX(6px);
}
@media (max-width: 860px) {
    .who-cta {
        grid-column: 1;
        justify-content: center;
    }

    .profile-btn {
        font-size: 1.2rem;
        text-align: center;
    }
}

.mining-cta {
    margin-top: 40px;
    display: flex;
    justify-content: flex-start; /* LEFT aligned */
}
@media (max-width: 860px) {
    .mining-cta {
        justify-content: center;
        text-align: center;
    }
}
.history-list {
    display: grid;
    gap: 28px;
    max-width: 900px;
    margin: 0 auto;
}

.history-card {
    padding: 34px 42px 38px;
    background: #ffffff;
    box-shadow: 18px 18px 28px rgba(25, 49, 89, 0.13);
}

.history-card h3 {
    margin: 0 0 12px;
    color: #244a83;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2rem;
}

.gold-line {
    position: relative;
    width: 360px;
    height: 2px;
    margin: 0 0 34px;
    background: #b99a72;
}

.gold-line::before,
.gold-line::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 7px;
    height: 7px;
    background: #b99a72;
    transform: translateY(-50%) rotate(45deg);
}

.gold-line::before {
    left: 0;
}

.gold-line::after {
    right: 0;
}

.history-card p {
    max-width: 760px;
    margin: 0 0 18px;
    color: #243a63;
    font-size: 0.92rem;
    line-height: 1.65;
}

.history-card p:last-child {
    margin-bottom: 0;
}

@media (max-width: 860px) {
    .history-section {
        padding: 60px 24px 80px;
    }

    .history-card {
        padding: 28px 24px;
    }

    .gold-line {
        width: 100%;
    }
}
.values-section {
    padding: 100px 70px;
    background: #f4f6fa;
}

.values-container {
    display: grid;
    grid-template-columns: 320px 1fr;
    align-items: center;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
}

/* LEFT BLUE BOX */
.values-list {
    background: linear-gradient(180deg, #2d4f86 0%, #3b628f 100%);
    padding: 50px 40px 70px;
    position: relative;
}

.values-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.values-list li {
    color: #ffffff;
    font-family: Georgia, serif;
    font-size: 1.5rem;
    margin-bottom: 16px;
    letter-spacing: 0.02em;
}

/* GOLD BASE BAR */
.values-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 18px;
    background: #b99a72;
}

/* RIGHT BOX */
.values-content {
    border: 2px solid #b99a72;
    padding: 60px 70px;
    background: #ffffff;
}

.values-content h3 {
    margin-bottom: 24px;
    color: #2a4e84;
    font-family: Georgia, serif;
    font-size: 1.9rem;
}

.values-content p {
    margin-bottom: 18px;
    color: #2f456e;
    font-size: 0.95rem;
    line-height: 1.7;
}

.values-content p:last-child {
    margin-bottom: 0;
}

/* RESPONSIVE */
@media (max-width: 860px) {
    .values-section {
        padding: 60px 24px;
    }

    .values-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .values-content {
        padding: 30px 24px;
    }
}
/* ========================= */
/* ESG SECTION */
/* ========================= */

/* CONTAINER = layout only */
.esg-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: stretch;
    max-width: 1100px;
    margin: 0 auto;
    gap: 0;
}

/* REMOVE card feel */
.esg-section {
    padding: 100px 70px;
    background: #f4f6fa;
}

/* LEFT SIDE (white content block) */
.esg-content {
    background: #ffffff;
    padding: 60px 60px 70px;
}

/* RIGHT SIDE IMAGE */
.esg-image {
    background: #ffffff; /* keeps clean edge if image doesn’t fill */
}

.esg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.esg-content h3 {
    font-size: 2.4rem;
    font-family: Georgia, serif;
    color: #2a4e84;
    margin-bottom: 20px;
}

/* GOLD LINE (reuse style) */
.gold-line {
    position: relative;
    width: 100%;
    max-width: 420px;
    height: 2px;
    margin-bottom: 30px;
    background: #b99a72;
}

.gold-line::before,
.gold-line::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 7px;
    height: 7px;
    background: #b99a72;
    transform: translateY(-50%) rotate(45deg);
}

.gold-line::before { left: 0; }
.gold-line::after { right: 0; }

.esg-content p {
    color: #2f456e;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.esg-content blockquote {
    border-left: 6px solid #b99a72;
    padding-left: 16px;
    color: #b99a72;
    font-size: 1.1rem;
    font-style: italic;
}



/* ========================= */
/* CTA */
/* ========================= */

.collective-cta {
    background: linear-gradient(90deg, #2d4f86, #3e6a9c);
    padding: 50px 70px;
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1100px;
    margin: 0 auto;
}

.cta-inner h2 {
    color: #ffffff;
    font-family: Georgia, serif;
    font-size: 2.3rem;
    font-style: italic;
}

.cta-btn {
    width: 60px;
    height: 60px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.8rem;
    transition: all 0.25s ease;
}

.cta-btn:hover {
    background: #ffffff;
    color: #2d4f86;
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */

@media (max-width: 860px) {
    .esg-section {
        padding: 60px 24px;
    }

    .esg-container {
        grid-template-columns: 1fr;
    }

    .esg-content {
        padding: 30px 24px;
    }

    .collective-cta {
        padding: 40px 24px;
    }

    .cta-inner {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}
.realestate-cta {
    margin-top: 40px;
    display: flex;
    justify-content: flex-start;
}
@media (max-width: 860px) {
    .realestate-cta {
        justify-content: center;
        text-align: center;
    }
}
    .privacy-page .page-content {
        padding: 0;
    }

    .privacy-page .content-inner {
        padding: 0;
        border-radius: 0;
        box-shadow: none;
        background: #f5f6f8;
    }

    .privacy-page .content-header,
    .privacy-page .site-footer {
        display: none;
    }

    .privacy-wrapper {
        max-width: 980px;
        margin: 0 auto;
        padding: 80px 32px 110px;
    }

    .privacy-header {
        margin-bottom: 42px;
    }

    .privacy-header h1 {
        margin: 0 0 16px;
        color: #142544;
        font-family: Georgia, "Times New Roman", serif;
        font-size: clamp(2.4rem, 5vw, 4rem);
    }

    .privacy-line {
        width: 180px;
        height: 3px;
        background: #b99a72;
    }

    .privacy-intro {
        margin-bottom: 28px;
        color: #2f456e;
        line-height: 1.75;
        font-size: 0.98rem;
    }

    .privacy-accordion {
        display: grid;
        gap: 16px;
    }

    .privacy-item {
        background: #ffffff;
        border-left: 4px solid #b99a72;
        box-shadow: 0 14px 34px rgba(25, 49, 89, 0.08);
    }

    .privacy-item summary {
        cursor: pointer;
        padding: 22px 26px;
        color: #244a83;
        font-weight: 700;
        font-size: 1.05rem;
        list-style: none;
    }

    .privacy-item summary::-webkit-details-marker {
        display: none;
    }

    .privacy-item summary::after {
        content: "+";
        float: right;
        font-size: 1.4rem;
        color: #b99a72;
    }

    .privacy-item[open] summary::after {
        content: "−";
    }

    .privacy-content {
        padding: 0 26px 26px;
    }

    .privacy-content p,
    .privacy-content li {
        color: #2f456e;
        font-size: 0.94rem;
        line-height: 1.7;
    }

    .privacy-content ul {
        padding-left: 20px;
    }

    .privacy-content a {
        color: #244a83;
        text-decoration: underline;
    }

    @media (max-width: 860px) {
        .privacy-wrapper {
            padding: 54px 20px 80px;
        }

        .privacy-item summary {
            padding: 20px;
        }

        .privacy-content {
            padding: 0 20px 22px;
        }
    }

    .collective-page .page-content {
        padding: 0;
    }

   .collective-page .content-inner {
    min-height: 100vh;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    background: #ffffff;
    overflow: visible;
}

    .collective-page .content-header,
    .collective-page .site-footer {
        display: none;
    }

    .collective-hero {
        min-height: 100vh;
        padding: 64px 62px;
        background-image: url('/assets/img/LJIW-Collection.webp');
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
    }

    .collective-top {
        display: flex;
        justify-content: flex-end;
        margin-bottom: 96px;
    }

    .collective-contact {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 320px;
        padding: 17px 40px;
        border-radius: 999px;
        background: #274a89;
        color: #ffffff;
        font-weight: 700;
        font-size: 0.95rem;
        letter-spacing: 0.02em;
    }

    .collective-contact:hover {
        background: #1f3d72;
    }

    .collective-intro {
        max-width: 760px;
        margin-bottom: 135px;
    }

    .collective-intro h1 {
        max-width: 12ch;
        margin: 0 0 46px;
        color: #142544;
        font-family: Georgia, "Times New Roman", serif;
        font-size: clamp(3.2rem, 5.5vw, 5.2rem);
        line-height: 0.98;
        letter-spacing: -0.04em;
    }

    .collective-intro h1 span {
        color: #284f87;
    }

    .collective-intro p {
        max-width: 680px;
        margin: 0 0 24px;
        color: #21385f;
        font-size: 1.08rem;
        line-height: 1.55;
    }

    .capital-card {
        display: grid;
        grid-template-columns: 1.05fr 0.95fr;
        max-width: 1140px;
        background: #ffffff;
    }

    .capital-content {
        padding: 72px 42px 64px;
    }

    .capital-content h2 {
        max-width: 13ch;
        margin: 0 0 34px;
        color: #203f76;
        font-family: Georgia, "Times New Roman", serif;
        font-size: clamp(2.2rem, 3.4vw, 3.4rem);
        line-height: 1;
    }

    .gold-line {
        position: relative;
        width: 100%;
        height: 3px;
        max-width: 520px;
        margin-bottom: 76px;
        background: #b99a72;
    }

    .gold-line::before,
    .gold-line::after {
        content: "";
        position: absolute;
        top: 50%;
        width: 10px;
        height: 10px;
        background: #b99a72;
        transform: translateY(-50%) rotate(45deg);
    }

    .gold-line::before {
        left: 0;
    }

    .gold-line::after {
        right: 0;
    }

    .capital-content p {
        max-width: 560px;
        margin: 0;
        color: #2f456e;
        font-size: 1.08rem;
        line-height: 1.6;
    }

    .capital-image {
        position: relative;
        min-height: 490px;
    }

    .capital-image img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
    }

    .capital-mark {
        position: absolute;
        right: 28px;
        bottom: 28px;
        width: 80px;
        height: auto;
    }

    @media (max-width: 860px) {
        .collective-hero {
            padding: 34px 22px;
            background-position: center;
        }

        .collective-top {
            justify-content: flex-start;
            margin-bottom: 60px;
        }

        .collective-contact {
            min-width: 180px;
            padding: 14px 24px;
        }

        .collective-intro {
            margin-bottom: 60px;
        }

        .collective-intro h1 {
            font-size: clamp(2.6rem, 11vw, 4rem);
        }

        .capital-card {
            grid-template-columns: 1fr;
        }

        .capital-content {
            padding: 42px 28px;
        }

        .gold-line {
            margin-bottom: 44px;
        }

        .capital-image {
            min-height: 320px;
        }
    }
.collective-jump-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    display: grid;
    grid-template-columns: 360px 1fr;
    min-height: 92px;
    background: #ffffff;
    border-bottom: 1px solid rgba(20, 37, 68, 0.18);
}

.collective-jump-label {
    display: flex;
    align-items: center;
    padding: 0 58px;
    background: #2f5e93;
    color: #ffffff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.35rem;
    font-weight: 700;
    text-transform: uppercase;
}

.collective-jump-links {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 36px;
    padding: 0 42px;
}

.collective-jump-links a {
    position: relative;
    padding: 28px 0 26px;
    color: #244a83;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.05rem;
    font-weight: 700;
    white-space: nowrap;
}

.collective-jump-links a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 17px;
    width: 0;
    height: 3px;
    background: #b99a72;
    transform: translateX(-50%);
    transition: width 0.25s ease;
}

.collective-jump-links a::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 13px;
    width: 9px;
    height: 9px;
    background: #b99a72;
    opacity: 0;
    transform: translateX(-50%) rotate(45deg);
    transition: opacity 0.25s ease;
}

.collective-jump-links a:hover::after,
.collective-jump-links a.is-active::after {
    width: 100%;
}

.collective-jump-links a:hover::before,
.collective-jump-links a.is-active::before {
    opacity: 1;
}

.collective-detail-section {
    padding: 58px 58px 90px;
    background: #f1f2f4;
}

.collective-detail-card {
    max-width: 1220px;
    margin: 0 auto;
    background: #ffffff;
}

.collective-detail-content {
    padding: 62px 68px 70px;
}

.collective-detail-content h2 {
    margin: 0 0 22px;
    color: #142544;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3rem, 5vw, 5.2rem);
    line-height: 1;
}

.collective-detail-content h2 span {
    color: #284f87;
}

.collective-detail-content h3 {
    margin: 0 0 18px;
    color: #4b4b4b;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.45rem;
    font-weight: 700;
}

.collective-detail-content p {
    max-width: 780px;
    margin: 52px 0 0;
    color: #243a63;
    font-size: 1.1rem;
    line-height: 1.55;
}

.collective-detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 860px) {
    .collective-jump-nav {
        grid-template-columns: 1fr;
    }

    .collective-jump-label {
        min-height: 64px;
        padding: 0 24px;
    }

    .collective-jump-links {
        justify-content: flex-start;
        overflow-x: auto;
        gap: 28px;
        padding: 0 24px;
    }

    .collective-detail-section {
        padding: 34px 20px 60px;
    }

    .collective-detail-content {
        padding: 36px 26px 44px;
    }

    .collective-detail-content h2 {
        font-size: clamp(2.4rem, 12vw, 4rem);
    }
}
/* ========================= */
/* CONTACT / CTA */
/* ========================= */

.collective-cta {
    background: linear-gradient(90deg, #2d4f86, #3f6b9c);
    padding: 60px 70px;
}

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

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cta-inner h2 {
    margin: 0;

    color: #ffffff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.4rem, 3.5vw, 3.2rem);
    font-style: italic;
    font-weight: 500;
}

/* BUTTON */
.cta-btn {
    width: 68px;
    height: 68px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 2px solid #ffffff;
    border-radius: 50%;

    color: #ffffff;
    font-size: 1.8rem;

    transition: all 0.3s ease;
}

/* HOVER EFFECT */
.cta-btn:hover {
    background: #ffffff;
    color: #2d4f86;
    transform: translateX(4px);
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */

@media (max-width: 860px) {
    .collective-cta {
        padding: 40px 24px;
    }

    .cta-inner {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .cta-inner h2 {
        font-size: 2rem;
    }

    .cta-btn {
        width: 56px;
        height: 56px;
        font-size: 1.4rem;
    }
}
    .home-page {
        background: #d5e0f3;
    }

    .home-page .page-content {
        padding: 0;
    }

    .home-page .content-inner {
        min-height: 100vh;
        padding: 0;
        border-radius: 0;
        box-shadow: none;
        background-color: #d6e1f4;
        background-image: url('/assets/img/Home.webp');
        background-repeat: no-repeat;
        background-position: right bottom;
        background-size: cover;
        overflow: hidden;
    }

    .home-page .content-header,
    .home-page main,
    .home-page .site-footer {
        position: relative;
        z-index: 1;
    }

    .home-page .content-header {
        justify-content: flex-end;
        margin: 0;
padding: 12px 16px 0;
    }

    .home-header-tools {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .home-page .contact-button {
        min-width: 182px;
        padding: 0.92rem 1.7rem;
        background: #274a89;
        box-shadow: none;
        font-size: 0.82rem;
        letter-spacing: 0.03em;
    }

    .home-page .contact-button:hover {
        background: #1f3d72;
    }

    .home-stage {
        padding: 56px 28px 26px;
    }

    .home-hero {
        max-width: 690px;
        padding-top: 48px;
    }

    .home-hero h1 {
        max-width: 15ch;
        margin: 0 0 22px;
        color: #22345d;
        font-size: 40.8px;
        line-height: 1.04;
        letter-spacing: -0.02em;
    }

    .home-hero p {
        max-width: 60ch;
        margin: 0 0 12px;
        color: #2f456e;
        font-size: 0.98rem;
        line-height: 1.75;
    }

    .collective-section {
        margin-top: 92px;
    }

    .collective-heading {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
        gap: 12px;
        margin-bottom: 20px;
    }

.collective-heading::before {
    content: "";
    height: 1px;
    width: 660px;          /* 👈 control length here */
    background: rgba(39, 74, 137, 0.55);
}

    .collective-heading h2 {
        margin: 0;
        font-size: clamp(1.9rem, 3.2vw, 2.8rem);
        font-style: italic;
        font-weight: 400;
        color: #334467;
        line-height: 1;
    }

  .opportunity-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
margin-top: 84px;
    max-width: 725px;
    margin-left: auto;   /* pushes it right */
}

    .opportunity-card {
        position: relative;
        min-height: 120px;
        padding: 12px 16px 42px;
        border: 1px solid rgba(34, 52, 93, 0.08);
        background: rgba(255, 255, 255, 0.98);
        display: block;   /* important for anchor */
    }

    .opportunity-card.is-offset {
        grid-column: 3;
        margin-top: 2px;
    }

    .opportunity-kicker {
        margin: 0 0 6px;
        color: rgba(31, 49, 87, 0.86);
        font-size: 0.62rem;
        line-height: 1.3;
        text-transform: uppercase;
    }

    .opportunity-flourish {
        display: block;
        margin-bottom: 2px;
        font-family: Georgia, "Times New Roman", serif;
        font-style: italic;
        color: #f2a533;
        font-size: 1.02rem;
        line-height: 1;
    }

    .opportunity-title {
        max-width: 9.5ch;
        margin: 0;
        color: #27437a;
        font-family: Georgia, "Times New Roman", serif;
        font-size: 0.98rem;
        line-height: 1.02;
    }

    .opportunity-arrow {
        position: absolute;
        right: 12px;
        bottom: 10px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 28px;
        height: 28px;
        border: 1px solid rgba(39, 74, 137, 0.88);
        border-radius: 999px;
        color: #f2a533;
        font-size: 1rem;
        line-height: 1;
    }

    .home-page .site-footer {
        display: none;
    }

    @media (max-width: 860px) {
        .home-page .content-inner {
            min-height: auto;
            background-position: 68% bottom;
        }

        .home-page .content-header {
            padding: 12px 16px 0;
            justify-content: flex-start;
        }

        .home-header-tools {
            width: 100%;
            justify-content: space-between;
        }

        .home-page .contact-button {
            min-width: 148px;
            padding: 0.8rem 1.15rem;
        }

        .home-stage {
            padding: 28px 16px 20px;
        }

        .home-hero {
            max-width: 100%;
            padding-top: 18px;
        }

        .home-hero h1 {
            max-width: 12ch;
            font-size: clamp(2.15rem, 8vw, 40.8px);
        }

        .collective-section {
            margin-top: 54px;
        }

        .collective-heading {
            grid-template-columns: 1fr;
            gap: 10px;
        }

        .collective-heading h2 {
            font-size: clamp(1.7rem, 7vw, 2.3rem);
        }

        .opportunity-grid {
            grid-template-columns: 1fr;
            max-width: none;
            gap: 10px;
        }

        .opportunity-card.is-offset {
            grid-column: auto;
            margin-top: 0;
        }
    }
    /* TILE ANIMATION */
.opportunity-card {
    opacity: 0;
    transform: translateY(20px) scale(0.98);
    animation: tileFadeUp 0.6s ease forwards;
}

/* STAGGER */
.opportunity-card:nth-child(1) { animation-delay: 0.1s; }
.opportunity-card:nth-child(2) { animation-delay: 0.2s; }
.opportunity-card:nth-child(3) { animation-delay: 0.3s; }
.opportunity-card:nth-child(4) { animation-delay: 0.4s; }

@keyframes tileFadeUp {
 to {
    opacity: 1;
    transform: translateY(0) scale(1);
}
}
.collective-heading h2 {
    color: #22345d;
}
/* TILE HOVER */
.opportunity-card {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.opportunity-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 30px rgba(27, 53, 102, 0.18);
}

/* Arrow interaction */
.opportunity-card:hover .opportunity-arrow {
    transform: translateX(4px);
}

.opportunity-arrow {
    transition: transform 0.25s ease;
}

/* CONTACT HERO */

.contact-page .content-header,
.contact-page .site-footer {
    display: none;
}

.contact-page .page-content {
    padding: 0;
}

.contact-page .content-inner {
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}

/* HERO SECTION */

.contact-hero {
    position: relative;
    min-height: 100vh;
    padding: 90px 60px 260px;
    background-color: #183345;
    background-image: url('/assets/img/contact-us.webp');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin-bottom: 0;
}
/* TEXT */

.contact-hero-inner {
    max-width: 900px;
}

.contact-hero h1 {
    max-width: 900px;
    white-space: nowrap; /* prevents extra wrapping */
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    line-height: 1.1;
    color: #142544;
    margin: 0 0 38px;
}
.contact-hero h1 span {
    color: #2a4e84;
}

/* LINE + EMAIL */

.contact-line-email {
    display: flex;
    align-items: center;
    gap: 30px;
}

.contact-line {
    width: 460px;
    height: 2px;
    background: #2a4e84;
    position: relative;
}

.contact-line::after {
    content: "";
    position: absolute;
    right: 0;
    top: -3px;
    width: 6px;
    height: 6px;
    background: #2a4e84;
    border-radius: 50%;
}

.contact-email {
    display: flex;
    align-items: center;
    gap: 18px;
    color: #244a83;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.4rem, 2.2vw, 2rem);
    font-style: italic;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.mail-icon {
    font-size: 1.8rem;
    font-style: normal;
}

/* LOCATION CARDS */

.contact-locations {
    position: absolute;
    bottom: 40px;
    left: 60px;
    right: 60px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.location-card {
    background: #ffffff;
    padding: 28px 28px 36px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 260px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
    transform: translateY(20px);
}

.location-card h3 {
    color: #244a83;
    margin-bottom: 10px;
}

.location-card p {
    font-size: 0.9rem;
    color: #333;
    line-height: 1.5;
}

.location-card img {
    width: calc(100% + 56px);
    height: 155px;
    object-fit: contain;
    object-position: center;
    margin: 20px -28px 12px;
    display: block;
    background: #fff;
}

/* RESPONSIVE */

@media (max-width: 900px) {
    .contact-locations {
        position: static;
        grid-template-columns: 1fr;
        margin-top: 40px;
    }

    .contact-hero {
        padding: 60px 20px;
    }
}
@media (max-width: 900px) {
    .contact-hero {
        min-height: auto;
        padding: 48px 20px 56px;
        background-position: center top;
    }

    .contact-hero-inner {
        max-width: 100%;
    }

    .contact-hero h1 {
        max-width: 100%;
        white-space: normal;
        font-size: clamp(2rem, 10vw, 3.2rem);
        line-height: 1.08;
        margin-bottom: 28px;
    }

    .contact-line-email {
        align-items: flex-start;
        flex-direction: column;
        gap: 16px;
    }

    .contact-line {
        width: 100%;
        max-width: 260px;
    }

    .contact-email {
        font-size: 1.35rem;
        gap: 12px;
        word-break: break-word;
    }

    .contact-locations {
        position: static;
        grid-template-columns: 1fr;
        gap: 18px;
        margin-top: 42px;
    }

    .location-card {
        height: auto;
        min-height: 260px;
        transform: translateY(20px);
    }

  .location-card img {
    height: 120px;
    object-fit: contain;
}
}
.contact-form-section {
    position: relative;
    padding: 110px 70px 110px;
    background: #183345 url('/assets/img/LGI-BG.png') right bottom/contain no-repeat;
    color: #ffffff;
    margin-top: 0;
}


.contact-form-inner {
    max-width: 980px;
}

.contact-form-kicker {
    margin: 0 0 18px;
    color: #ffffff;
    font-size: 1.1rem;
    letter-spacing: 0.28em;
}

.contact-form-section h2 {
    margin: 0 0 28px;
    color: #ffffff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 1;
}

.contact-form-section h2 span {
    color: #f2b85d;
}

.contact-form-copy {
    max-width: none;
    margin-bottom: 50px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
}

.contact-form {
    display: grid;
    gap: 26px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34px;
}

.contact-form label {
    display: grid;
    gap: 10px;
    color: #ffffff;
    font-size: 1.2rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    border: none;
    background: #ffffff;
    color: #142544;
    font: inherit;
    padding: 0 18px;
    outline: none;
}

.contact-form input,
.contact-form select {
    height: 72px;
}

.contact-form textarea {
    min-height: 190px;
    padding-top: 18px;
    resize: vertical;
}

.contact-form button {
    margin-top: 28px;
    width: 395px;
    height: 96px;
    border: none;
    background: #f2b85d;
    color: #142544;
    font-weight: 800;
    letter-spacing: 0.12em;
    cursor: pointer;
}

@media (max-width: 860px) {
    .contact-form-section {
        padding: 60px 22px 80px;
        background-size: 150%;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .contact-form button {
        width: 100%;
        height: 72px;
    }
}
/* Match main hero headings across all pages */
.home-hero h1,
.about-hero-title,
.collective-intro h1,
.contact-hero h1 {
    max-width: 15ch;
    white-space: normal;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 40.8px;
    line-height: 1.04;
    letter-spacing: -0.02em;
    color: #22345d;
    margin: 0 0 22px;
}

/* Remove multi-coloured hero heading spans */
.about-hero-title span,
.collective-intro h1 span,
.contact-hero h1 span {
    color: inherit;
}

@media (max-width: 860px) {
    .home-hero h1,
    .about-hero-title,
    .collective-intro h1,
    .contact-hero h1 {
        max-width: 12ch;
        font-size: clamp(2.15rem, 8vw, 40.8px);
    }
}
/* ========================= */
/* MOBILE OPTIMISATION FIXES */
/* ========================= */

@media (max-width: 860px) {

    /* Home page spacing */
    .home-page .content-inner {
        min-height: calc(100vh - 82px);
        background-position: 72% bottom;
    }

    .home-stage {
        padding: 32px 18px 36px;
    }

    .home-hero {
        padding-top: 28px;
    }

    .home-hero p {
        font-size: 0.92rem;
        line-height: 1.6;
    }

    .collective-section {
        margin-top: 46px;
    }

    /* Get in Touch button */
    .home-page .content-header {
        padding: 14px 18px 0;
        justify-content: flex-end;
    }

    .home-header-tools {
        width: auto;
        justify-content: flex-end;
    }

    .home-page .contact-button,
    .about-top .contact-button {
        min-width: 132px;
        padding: 0.72rem 1rem;
        font-size: 0.76rem;
        box-shadow: none;
    }

    /* Mobile navbar */
    .mobile-topbar {
        padding: 1rem 1.15rem;
    }

    .mobile-topbar .brand-logo {
        width: 150px;
    }

    .menu-toggle {
        width: 36px;
        height: 30px;
    }

    .menu-toggle span,
    .menu-toggle span::before,
    .menu-toggle span::after {
        width: 24px;
    }

    .page-sidebar {
        padding: 5rem 2rem 2rem;
    }

    .sidebar-body {
        margin-top: 2.8rem;
    }

    .site-nav {
        gap: 1.35rem;
    }

    .nav-link {
        font-size: 1.35rem;
    }

    .sidebar-watermark {
        margin-top: 3rem;
    }

    .sidebar-watermark img {
        width: 220px;
        transform: translateX(-32px);
    }

    .footer-link {
        font-size: 1rem;
    }

    /* CIDC mining document link */
    .mining-cta {
        margin-top: 30px;
        justify-content: flex-start;
        text-align: left;
    }

    .mining-cta .profile-btn {
        max-width: 100%;
        font-size: 1rem;
        line-height: 1.25;
        gap: 12px;
        align-items: center;
    }

    .mining-cta .profile-arrow {
        flex: 0 0 42px;
        width: 42px;
        height: 42px;
        font-size: 1.4rem;
    }
}
@media (max-width: 860px) {

    .home-page .content-header {
        padding: 22px 18px 0; /* 👈 increase top padding */
    }

    .about-top {
        top: 28px; /* 👈 push it down from top */
    }

}