    :root {
        --navy: #0d2340;
        --navy-mid: #163559;
        --blue: #1a5fa8;
        --gold: #e8a020;
        --gold-light: #f5b93a;
        --white: #ffffff;
        --off-white: #f4f6fa;
        --text: #2a2a2a;
        --text-muted: #6b7280;
        --border: #dce3ef;
    }

    *,
    *::before,
    *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: 'Lato', sans-serif;
        color: var(--text);
        background: var(--white);
        overflow-x: hidden;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        font-family: 'Oswald', sans-serif;
    }

    /* ════════════════ HEADER ════════════════ */
    .announcement-bar {
        position: relative;
        z-index: 1100;
        background: rgba(13, 35, 64, .82);
        backdrop-filter: blur(18px) saturate(160%);
        -webkit-backdrop-filter: blur(18px) saturate(160%);
        border-bottom: 1px solid rgba(255, 255, 255, .1);
        padding: 9px 0;
        overflow: hidden;
    }

    .announcement-bar::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: -60%;
        width: 60%;
        height: 1.5px;
        background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
        animation: shimmer 3.5s ease-in-out infinite;
    }

    @keyframes shimmer {
        0% {
            left: -60%
        }

        100% {
            left: 140%
        }
    }

    .ann-pill {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        background: rgba(232, 160, 32, .18);
        border: 1px solid rgba(232, 160, 32, .35);
        border-radius: 20px;
        padding: 3px 12px;
        font-size: .72rem;
        font-weight: 700;
        letter-spacing: 1.2px;
        text-transform: uppercase;
        color: var(--gold-light);
    }

    .ann-text {
        font-size: .79rem;
        color: rgba(255, 255, 255, .78);
    }

    .ann-text a {
        color: var(--gold-light);
        text-decoration: none;
        font-weight: 700;
    }

    .ann-contact {
        display: flex;
        align-items: center;
        gap: 6px;
        font-size: .79rem;
        color: rgba(255, 255, 255, .7);
    }

    .ann-contact i {
        color: var(--gold);
        font-size: .75rem;
    }

    .ann-contact a {
        color: var(--white);
        font-weight: 700;
        text-decoration: none;
        font-family: 'Oswald', sans-serif;
        font-size: .92rem;
    }

    .ann-contact a:hover {
        color: var(--gold-light);
    }

    .ann-socials {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .ann-socials a {
        width: 28px;
        height: 28px;
        border: 1px solid rgba(255, 255, 255, .18);
        border-radius: 6px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: rgba(255, 255, 255, .55);
        font-size: .75rem;
        text-decoration: none;
        transition: all .25s;
    }

    .ann-socials a:hover {
        border-color: var(--gold);
        color: var(--gold-light);
        background: rgba(232, 160, 32, .1);
    }

    .site-header {
        position: sticky;
        top: 0;
        z-index: 1050;
    }

    .main-nav {
        background: rgba(255, 255, 255, .97);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        border-bottom: 1px solid rgba(13, 35, 64, .1);
        box-shadow: 0 4px 24px rgba(13, 35, 64, .1);
        padding: 0;
    }

    .nav-logo-wrap {
        display: flex;
        align-items: center;
        gap: 14px;
        text-decoration: none;
    }

    .logo-icon-box {
        position: relative;
        width: 54px;
        height: 54px;
        border-radius: 10px;
        background: var(--navy);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        overflow: hidden;
        transition: transform .3s;
    }

    .logo-icon-box::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: conic-gradient(from 0deg, transparent 60%, rgba(232, 160, 32, .5) 80%, transparent 100%);
        animation: logo-spin 4s linear infinite;
    }

    @keyframes logo-spin {
        to {
            transform: rotate(360deg)
        }
    }

    .logo-icon-box i {
        position: relative;
        z-index: 1;
        color: var(--gold-light);
        font-size: 1.4rem;
    }

    .nav-logo-wrap:hover .logo-icon-box {
        transform: scale(1.06);
    }

    .logo-name {
        font-family: 'Oswald', sans-serif;
        font-size: 1.35rem;
        font-weight: 700;
        color: var(--navy);
        letter-spacing: .5px;
        display: block;
    }

    .logo-tagline {
        font-size: .6rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 2px;
        color: var(--blue);
        display: block;
    }

    .nav-items {
        display: flex;
        align-items: center;
        list-style: none;
        margin: 0;
        padding: 0;
        gap: 2px;
    }

    .nav-items .nav-link {
        font-family: 'Oswald', sans-serif;
        font-size: .85rem;
        font-weight: 500;
        letter-spacing: .8px;
        text-transform: uppercase;
        color: var(--navy) !important;
        padding: 28px 15px !important;
        position: relative;
        transition: color .25s;
        text-decoration: none;
    }

    .nav-items .nav-link::before {
        content: '';
        position: absolute;
        bottom: 18px;
        left: 15px;
        right: 15px;
        height: 2px;
        background: var(--gold);
        border-radius: 2px;
        transform: scaleX(0);
        transform-origin: right;
        transition: transform .3s ease;
    }

    .nav-items .nav-link:hover::before,
    .nav-items .nav-link.active::before {
        transform: scaleX(1);
        transform-origin: left;
    }

    .nav-items .nav-link:hover {
        color: var(--blue) !important;
    }

    .nav-cta-wrap {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-left: 8px;
    }

    .nav-phone-btn {
        display: flex;
        align-items: center;
        gap: 8px;
        color: var(--navy);
        text-decoration: none;
        font-family: 'Oswald', sans-serif;
        font-size: .88rem;
        transition: color .25s;
    }

    .nav-phone-btn .ph-icon {
        width: 34px;
        height: 34px;
        border: 1.5px solid var(--navy-mid);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: .8rem;
        transition: all .25s;
    }

    .nav-phone-btn:hover .ph-icon {
        background: var(--gold);
        border-color: var(--gold);
        color: var(--navy);
    }

    .nav-estimate-btn {
        background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
        color: var(--navy) !important;
        font-family: 'Oswald', sans-serif;
        font-weight: 700;
        font-size: .82rem;
        letter-spacing: 1px;
        text-transform: uppercase;
        padding: 11px 22px;
        border-radius: 6px;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 7px;
        transition: all .3s;
        box-shadow: 0 4px 18px rgba(232, 160, 32, .4);
        white-space: nowrap;
        position: relative;
        overflow: hidden;
    }

    .nav-estimate-btn::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(255, 255, 255, .3) 0%, transparent 60%);
        opacity: 0;
        transition: opacity .3s;
    }

    .nav-estimate-btn:hover::before {
        opacity: 1;
    }

    .nav-estimate-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 28px rgba(232, 160, 32, .55);
    }

    .nav-toggler {
        background: var(--off-white);
        border: 1.5px solid var(--border);
        border-radius: 8px;
        padding: 8px 12px;
        cursor: pointer;
        display: none;
        flex-direction: column;
        gap: 5px;
    }

    .nav-toggler span {
        display: block;
        width: 22px;
        height: 2px;
        background: var(--navy);
        border-radius: 2px;
        transition: all .3s;
    }

    .nav-toggler.open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .nav-toggler.open span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }

    .nav-toggler.open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .mobile-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 16px;
        right: 16px;
        background: rgba(13, 35, 64, .97);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, .1);
        border-radius: 12px;
        padding: 20px 24px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, .4);
        z-index: 1060;
    }

    .mobile-menu.open {
        display: block;
        animation: slideDown .3s ease;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-12px)
        }

        to {
            opacity: 1;
            transform: none
        }
    }

    .mobile-menu a {
        display: block;
        font-family: 'Oswald', sans-serif;
        font-size: 1rem;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: rgba(255, 255, 255, .8);
        text-decoration: none;
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 255, 255, .07);
        transition: color .2s, padding-left .2s;
    }

    .mobile-menu a:hover {
        color: var(--gold-light);
        padding-left: 8px;
    }

    .mobile-menu a:last-child {
        border-bottom: none;
    }

    .mobile-cta {
        margin-top: 16px;
    }

    .mobile-cta a.primary {
        background: var(--gold);
        color: var(--navy);
        text-align: center;
        padding: 13px;
        border-radius: 8px;
        font-family: 'Oswald', sans-serif;
        font-weight: 700;
        font-size: .9rem;
        text-transform: uppercase;
        text-decoration: none;
        display: block;
    }

    @media(max-width:991px) {
        .nav-toggler {
            display: flex
        }

        .nav-items,
        .nav-cta-wrap {
            display: none
        }

        .main-nav .container {
            position: relative
        }
    }

    /* ════════════════ HERO BANNER ════════════════ */
    .page-hero {
        background: linear-gradient(125deg, var(--navy) 0%, var(--navy-mid) 55%, #1e4a7a 100%);
        padding: 72px 0 110px;
        position: relative;
        overflow: hidden;
    }

    .page-hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
        background-size: 44px 44px;
        animation: grid-move 25s linear infinite;
    }

    @keyframes grid-move {
        0% {
            background-position: 0 0
        }

        100% {
            background-position: 44px 44px
        }
    }

    .hero-orb {
        position: absolute;
        top: -100px;
        right: -100px;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(232, 160, 32, .13) 0%, transparent 65%);
        border-radius: 50%;
        animation: orb 7s ease-in-out infinite alternate;
    }

    .hero-orb2 {
        position: absolute;
        bottom: -80px;
        left: -80px;
        width: 350px;
        height: 350px;
        background: radial-gradient(circle, rgba(26, 95, 168, .18) 0%, transparent 65%);
        border-radius: 50%;
        animation: orb 9s ease-in-out infinite alternate-reverse;
    }

    @keyframes orb {
        0% {
            transform: scale(1)
        }

        100% {
            transform: scale(1.18)
        }
    }

    .hero-content {
        position: relative;
        z-index: 2;
        text-align: center;
    }

    .hero-eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(232, 160, 32, .15);
        border: 1px solid rgba(232, 160, 32, .4);
        border-radius: 20px;
        padding: 5px 16px;
        margin-bottom: 18px;
        font-size: .72rem;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--gold-light);
    }

    .hero-content h1 {
        font-size: clamp(2.8rem, 5vw, 4.4rem);
        font-weight: 700;
        color: var(--white);
        text-transform: uppercase;
        letter-spacing: 5px;
        line-height: 1.05;
        margin-bottom: 12px;
    }

    .hero-content h1 span {
        color: var(--gold-light);
    }

    .hero-content p {
        color: rgba(255, 255, 255, .68);
        font-size: 1rem;
        max-width: 500px;
        margin: 0 auto 22px;
        line-height: 1.75;
    }

    .breadcrumb-nav {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        font-size: .8rem;
        color: rgba(255, 255, 255, .45);
    }

    .breadcrumb-nav a {
        color: rgba(255, 255, 255, .65);
        text-decoration: none;
        transition: color .2s;
    }

    .breadcrumb-nav a:hover {
        color: var(--gold-light);
    }

    /* Filter pill row in hero */
    .hero-filters {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 28px;
    }

    .hf-pill {
        font-family: 'Oswald', sans-serif;
        font-size: .78rem;
        font-weight: 500;
        letter-spacing: 1px;
        text-transform: uppercase;
        padding: 8px 20px;
        border-radius: 30px;
        border: 1.5px solid rgba(255, 255, 255, .25);
        background: rgba(255, 255, 255, .07);
        color: rgba(255, 255, 255, .75);
        cursor: pointer;
        transition: all .3s;
        backdrop-filter: blur(6px);
    }

    .hf-pill:hover {
        border-color: var(--gold);
        color: var(--gold-light);
        background: rgba(232, 160, 32, .1);
    }

    .hf-pill.active {
        background: var(--gold);
        border-color: var(--gold);
        color: var(--navy);
        font-weight: 700;
        box-shadow: 0 4px 16px rgba(232, 160, 32, .4);
    }

    /* Wave */
    .hero-wave {
        position: absolute;
        bottom: -2px;
        left: 0;
        right: 0;
        height: 70px;
        overflow: hidden;
    }

    .hero-wave svg {
        display: block;
        width: 100%;
        height: 100%;
    }

    /* ════════════════ STATS STRIP ════════════════ */
    .stats-strip {
        background: var(--gold);
        padding: 22px 0;
    }

    .stat-item {
        text-align: center;
    }

    .stat-item .sn {
        font-family: 'Oswald', sans-serif;
        font-size: 1.8rem;
        font-weight: 700;
        color: var(--navy);
        line-height: 1;
    }

    .stat-item .sl {
        font-size: .7rem;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: rgba(13, 35, 64, .65);
        margin-top: 3px;
    }

    /* ════════════════ GALLERY SECTION ════════════════ */
    .gallery-section {
        padding: 70px 0 90px;
        background: var(--off-white);
    }

    /* ── Masonry-style grid ── */
    .gallery-grid {
        columns: 4;
        column-gap: 14px;
    }

    @media(max-width:1100px) {
        .gallery-grid {
            columns: 3;
        }
    }

    @media(max-width:720px) {
        .gallery-grid {
            columns: 2;
        }
    }

    @media(max-width:480px) {
        .gallery-grid {
            columns: 1;
        }
    }

    .gallery-item {
        break-inside: avoid;
        margin-bottom: 14px;
        position: relative;
        overflow: hidden;
        border-radius: 12px;
        cursor: pointer;
        background: var(--navy-mid);
        /* entrance animation */
        opacity: 0;
        transform: translateY(24px) scale(.98);
        transition: opacity .55s ease, transform .55s ease, box-shadow .35s;
    }

    .gallery-item.visible {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    /* hide/show for filter */
    .gallery-item.hidden {
        opacity: 0 !important;
        transform: scale(.9) !important;
        pointer-events: none;
        position: absolute;
        /* collapse space */
    }

    .gallery-item img {
        width: 100%;
        display: block;
        transition: transform .6s cubic-bezier(.25, .46, .45, .94);
    }

    .gallery-item:hover {
        box-shadow: 0 20px 60px rgba(13, 35, 64, .25);
    }

    .gallery-item:hover img {
        transform: scale(1.08);
    }

    /* overlay */
    .gi-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(13, 35, 64, .85) 0%, rgba(13, 35, 64, .1) 55%, transparent 100%);
        opacity: 0;
        transition: opacity .35s;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding: 18px;
    }

    .gallery-item:hover .gi-overlay {
        opacity: 1;
    }

    .gi-title {
        font-family: 'Oswald', sans-serif;
        font-size: .92rem;
        font-weight: 600;
        color: var(--white);
        text-transform: uppercase;
        letter-spacing: .5px;
        margin-bottom: 4px;
    }

    .gi-tag {
        font-size: .72rem;
        color: var(--gold-light);
        font-weight: 700;
        letter-spacing: 1px;
        text-transform: uppercase;
    }

    .gi-zoom {
        position: absolute;
        top: 12px;
        right: 12px;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: rgba(255, 255, 255, .15);
        backdrop-filter: blur(6px);
        border: 1.5px solid rgba(255, 255, 255, .3);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--white);
        font-size: .85rem;
        opacity: 0;
        transform: scale(.7);
        transition: opacity .3s, transform .3s;
    }

    .gallery-item:hover .gi-zoom {
        opacity: 1;
        transform: scale(1);
    }

    .gi-zoom:hover {
        background: var(--gold);
        border-color: var(--gold);
        color: var(--navy);
    }

    /* No results */
    .no-results {
        display: none;
        text-align: center;
        padding: 60px 20px;
        color: var(--text-muted);
    }

    .no-results i {
        font-size: 3rem;
        margin-bottom: 16px;
        opacity: .3;
        display: block;
    }

    /* ════════════════ LIGHTBOX ════════════════ */
    .lightbox {
        position: fixed;
        inset: 0;
        z-index: 9999;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        pointer-events: none;
        transition: opacity .35s ease;
    }

    .lightbox.open {
        opacity: 1;
        pointer-events: all;
    }

    /* Dark blurred backdrop */
    .lb-backdrop {
        position: absolute;
        inset: 0;
        background: rgba(8, 18, 35, .92);
        backdrop-filter: blur(14px) saturate(120%);
        -webkit-backdrop-filter: blur(14px) saturate(120%);
    }

    /* Main panel */
    .lb-panel {
        position: relative;
        z-index: 2;
        display: flex;
        flex-direction: column;
        max-width: min(92vw, 1100px);
        max-height: 92vh;
        border-radius: 18px;
        overflow: hidden;
        box-shadow: 0 40px 120px rgba(0, 0, 0, .7), 0 0 0 1px rgba(255, 255, 255, .08);
        transform: scale(.9) translateY(20px);
        transition: transform .4s cubic-bezier(.175, .885, .32, 1.275);
        background: var(--navy);
    }

    .lightbox.open .lb-panel {
        transform: scale(1) translateY(0);
    }

    /* Top bar */
    .lb-topbar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 14px 20px;
        background: rgba(255, 255, 255, .05);
        border-bottom: 1px solid rgba(255, 255, 255, .08);
        flex-shrink: 0;
    }

    .lb-meta {
        display: flex;
        flex-direction: column;
        gap: 2px;
    }

    .lb-title {
        font-family: 'Oswald', sans-serif;
        font-size: .95rem;
        font-weight: 600;
        color: var(--white);
        text-transform: uppercase;
        letter-spacing: .5px;
    }

    .lb-cat {
        font-size: .72rem;
        color: var(--gold-light);
        letter-spacing: 1.5px;
        font-weight: 700;
        text-transform: uppercase;
    }

    .lb-controls {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .lb-btn {
        width: 36px;
        height: 36px;
        border-radius: 8px;
        background: rgba(255, 255, 255, .08);
        border: 1px solid rgba(255, 255, 255, .12);
        color: rgba(255, 255, 255, .7);
        font-size: .85rem;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all .25s;
    }

    .lb-btn:hover {
        background: var(--gold);
        border-color: var(--gold);
        color: var(--navy);
    }

    .lb-close {
        width: 36px;
        height: 36px;
        border-radius: 8px;
        background: rgba(255, 255, 255, .08);
        border: 1px solid rgba(255, 255, 255, .12);
        color: rgba(255, 255, 255, .7);
        font-size: .95rem;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all .25s;
    }

    .lb-close:hover {
        background: #e53e3e;
        border-color: #e53e3e;
        color: #fff;
    }

    /* Image area */
    .lb-img-wrap {
        position: relative;
        flex: 1;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 300px;
        background: #060f1e;
    }

    .lb-img-wrap img {
        max-width: 100%;
        max-height: 75vh;
        object-fit: contain;
        display: block;
        transition: opacity .3s, transform .4s;
    }

    .lb-img-wrap img.transitioning {
        opacity: 0;
        transform: scale(.96);
    }

    /* Loading spinner */
    .lb-loader {
        position: absolute;
        inset: 0;
        display: none;
        align-items: center;
        justify-content: center;
    }

    .lb-loader.show {
        display: flex;
    }

    .lb-spinner {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        border: 3px solid rgba(255, 255, 255, .1);
        border-top-color: var(--gold);
        animation: spin .8s linear infinite;
    }

    @keyframes spin {
        to {
            transform: rotate(360deg)
        }
    }

    /* Prev / Next arrows */
    .lb-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: rgba(255, 255, 255, .1);
        backdrop-filter: blur(8px);
        border: 1.5px solid rgba(255, 255, 255, .2);
        color: var(--white);
        font-size: 1.1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all .25s;
        z-index: 5;
    }

    .lb-arrow:hover {
        background: var(--gold);
        border-color: var(--gold);
        color: var(--navy);
        transform: translateY(-50%) scale(1.08);
    }

    .lb-arrow.prev {
        left: 16px;
    }

    .lb-arrow.next {
        right: 16px;
    }

    /* Bottom info bar */
    .lb-footer {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 12px 20px;
        background: rgba(255, 255, 255, .04);
        border-top: 1px solid rgba(255, 255, 255, .07);
        flex-shrink: 0;
    }

    .lb-counter {
        font-family: 'Oswald', sans-serif;
        font-size: .82rem;
        color: rgba(255, 255, 255, .45);
        letter-spacing: 1px;
    }

    .lb-counter span {
        color: var(--gold-light);
        font-weight: 700;
    }

    .lb-dots {
        display: flex;
        gap: 6px;
    }

    .lb-dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: rgba(255, 255, 255, .2);
        cursor: pointer;
        transition: all .25s;
    }

    .lb-dot.active {
        background: var(--gold);
        width: 18px;
        border-radius: 3px;
    }

    .lb-cta-row {
        display: flex;
        gap: 8px;
    }

    .lb-cta {
        font-family: 'Oswald', sans-serif;
        font-size: .75rem;
        font-weight: 700;
        letter-spacing: 1px;
        text-transform: uppercase;
        padding: 7px 16px;
        border-radius: 6px;
        text-decoration: none;
        transition: all .25s;
    }

    .lb-cta.primary {
        background: var(--gold);
        color: var(--navy);
    }

    .lb-cta.primary:hover {
        background: var(--gold-light);
    }

    .lb-cta.outline {
        border: 1px solid rgba(255, 255, 255, .25);
        color: rgba(255, 255, 255, .7);
    }

    .lb-cta.outline:hover {
        border-color: var(--gold);
        color: var(--gold-light);
    }

    /* Thumbnail strip */
    .lb-thumbs {
        display: flex;
        gap: 6px;
        padding: 10px 20px 14px;
        overflow-x: auto;
        flex-shrink: 0;
        background: rgba(0, 0, 0, .3);
        scrollbar-width: thin;
        scrollbar-color: rgba(255, 255, 255, .2) transparent;
    }

    .lb-thumbs::-webkit-scrollbar {
        height: 4px;
    }

    .lb-thumbs::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, .2);
        border-radius: 2px;
    }

    .lb-thumb {
        width: 52px;
        height: 40px;
        border-radius: 6px;
        overflow: hidden;
        flex-shrink: 0;
        cursor: pointer;
        opacity: .45;
        transition: all .25s;
        border: 2px solid transparent;
    }

    .lb-thumb.active {
        opacity: 1;
        border-color: var(--gold);
    }

    .lb-thumb:hover {
        opacity: .8;
    }

    .lb-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* ════════════════ CTA SECTION ════════════════ */
    .cta-section {
        padding: 72px 0;
        background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, #1e4a7a 100%);
        position: relative;
        overflow: hidden;
    }

    .cta-section::before {
        content: '';
        position: absolute;
        inset: 0;
        background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4z'/%3E%3C/g%3E%3C/svg%3E");
    }

    .cta-glow {
        position: absolute;
        top: -120px;
        right: -120px;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(232, 160, 32, .14) 0%, transparent 60%);
        border-radius: 50%;
        animation: orb 6s ease-in-out infinite alternate;
    }

    .cta-inner {
        position: relative;
        z-index: 2;
    }

    .cta-inner h2 {
        font-size: 2.4rem;
        color: var(--white);
        margin-bottom: 12px;
    }

    .cta-inner h2 span {
        color: var(--gold-light);
    }

    .cta-inner p {
        color: rgba(255, 255, 255, .7);
        font-size: .95rem;
        line-height: 1.75;
        max-width: 480px;
        margin-bottom: 28px;
    }

    .btn-gold {
        background: var(--gold);
        color: var(--navy);
        font-family: 'Oswald', sans-serif;
        font-weight: 700;
        font-size: .9rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        padding: 14px 32px;
        border-radius: 6px;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        transition: all .3s;
        box-shadow: 0 6px 24px rgba(232, 160, 32, .4);
    }

    .btn-gold:hover {
        background: var(--gold-light);
        transform: translateY(-3px);
        color: var(--navy);
    }

    .btn-outline-w {
        background: transparent;
        color: var(--white);
        border: 2px solid rgba(255, 255, 255, .45);
        font-family: 'Oswald', sans-serif;
        font-weight: 600;
        font-size: .9rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        padding: 12px 28px;
        border-radius: 6px;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        transition: all .3s;
    }

    .btn-outline-w:hover {
        background: rgba(255, 255, 255, .1);
        color: var(--white);
        transform: translateY(-3px);
    }

    .cta-ph-box {
        background: rgba(255, 255, 255, .07);
        border: 1px solid rgba(255, 255, 255, .14);
        border-radius: 14px;
        padding: 28px;
        text-align: center;
        backdrop-filter: blur(10px);
    }

    .cta-ph-box .num {
        font-family: 'Oswald', sans-serif;
        font-size: 2rem;
        font-weight: 700;
        color: var(--gold-light);
        display: block;
        text-decoration: none;
    }

    .cta-ph-box .num:hover {
        color: #fff;
    }

    .cta-ph-box p {
        color: rgba(255, 255, 255, .5);
        font-size: .82rem;
        margin: 6px 0 0;
    }

    /* ════════════════ FOOTER ════════════════ */
    footer {
        background: var(--navy);
        color: rgba(255, 255, 255, .7);
        padding: 60px 0 0;
    }

    footer h5 {
        font-family: 'Oswald', sans-serif;
        font-size: 1rem;
        font-weight: 600;
        color: var(--white);
        text-transform: uppercase;
        letter-spacing: 1.5px;
        margin-bottom: 20px;
        padding-bottom: 10px;
        border-bottom: 2px solid var(--gold);
        display: inline-block;
    }

    footer p {
        font-size: .87rem;
        line-height: 1.75;
    }

    footer a {
        color: rgba(255, 255, 255, .6);
        text-decoration: none;
        font-size: .87rem;
        transition: color .2s;
    }

    footer a:hover {
        color: var(--gold-light);
    }

    footer ul {
        list-style: none;
        padding: 0;
    }

    footer ul li {
        padding: 5px 0;
    }

    footer ul li a::before {
        content: '→ ';
        color: var(--gold);
        font-size: .75rem;
    }

    .footer-social a {
        width: 38px;
        height: 38px;
        background: rgba(255, 255, 255, .08);
        border-radius: 6px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-right: 8px;
        color: rgba(255, 255, 255, .6) !important;
        font-size: .95rem;
        transition: all .25s;
    }

    .footer-social a:hover {
        background: var(--gold);
        color: var(--navy) !important;
        transform: translateY(-3px);
    }

    .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, .1);
        margin-top: 48px;
        padding: 20px 0;
        font-size: .8rem;
        color: rgba(255, 255, 255, .4);
    }

    .footer-logo-text {
        font-family: 'Oswald', sans-serif;
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--white);
    }

    .footer-logo-text span {
        color: var(--gold-light);
    }

    /* ════════════════ UTILS ════════════════ */
    .reveal {
        opacity: 0;
        transform: translateY(26px);
        transition: opacity .7s ease, transform .7s ease;
    }

    .reveal.visible {
        opacity: 1;
        transform: none;
    }

    .d1 {
        transition-delay: .1s
    }

    .d2 {
        transition-delay: .2s
    }

    .d3 {
        transition-delay: .3s
    }

    .d4 {
        transition-delay: .4s
    }

    .divider-line {
        width: 60px;
        height: 3px;
        background: var(--gold);
        margin: 10px auto 16px;
        border-radius: 2px;
    }

    #back-top {
        position: fixed;
        bottom: 28px;
        right: 28px;
        width: 46px;
        height: 46px;
        background: var(--gold);
        color: var(--navy);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.1rem;
        box-shadow: 0 4px 16px rgba(0, 0, 0, .25);
        opacity: 0;
        pointer-events: none;
        transition: all .3s;
        z-index: 999;
        text-decoration: none;
    }

    /* keyboard hint */
    .kbd-hint {
        position: fixed;
        bottom: 28px;
        left: 50%;
        transform: translateX(-50%);
        background: rgba(13, 35, 64, .85);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, .12);
        border-radius: 30px;
        padding: 8px 18px;
        font-size: .72rem;
        color: rgba(255, 255, 255, .6);
        letter-spacing: 1px;
        text-transform: uppercase;
        z-index: 9998;
        opacity: 0;
        transition: opacity .4s;
        pointer-events: none;
    }

    .lightbox.open~.kbd-hint {
        opacity: 1;
    }

    .kbd-hint kbd {
        background: rgba(255, 255, 255, .12);
        border-radius: 4px;
        padding: 2px 7px;
        color: var(--gold-light);
        font-family: monospace;
    }