:root {
    --blue-dark: #0A111F;
    --blue-brand: #3262A8;
    --gold: #C9A24D;
    --green: #529E54;
    --purple: #81549B;
    --white: #FFFFFF;
    --gray: #A0AEC0;
    --dark-bg: #050505;
    --panel-bg: rgba(5, 5, 5, 0.96);

    --transition-fast: 0.3s ease;
    --transition-slow: 0.6s ease;
    --container-max: 1400px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Times New Roman', Times, serif;
    background-color: var(--dark-bg);
    color: var(--white);
    overflow: hidden;
    line-height: 1.6;
}

h2 {
    font-size: clamp(32px, 5vw, 64px);
    line-height: 1.1;
    margin-bottom: 24px;
}

p {
    font-size: 16px;
    color: var(--gray);
}

.accent {
    color: var(--gold);
    font-style: italic;
}

.step-tag {
    display: block;
    color: var(--gold);
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin: 12vh 0 16px 0;
}

#num01 {
    position: absolute;
    top: clamp(4%, 6%, 8%);
    left: 6%;
    font-size: clamp(90px, 12vw, 140px);
    font-weight: 900;
    color: rgba(201, 162, 77, 0.04);
}

#num02 {
    position: absolute;
    padding: 100px;
    top: clamp(-18%, -12%, -6%);
    left: 45%;
    font-size: clamp(90px, 12vw, 140px);
    font-weight: 900;
    color: rgba(201, 162, 77, 0.04);
    pointer-events: none;
}

.snap-container {
    height: 100vh;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
}

.full-section {
    height: 100vh;
    width: 100%;
    scroll-snap-align: start;
    position: relative;
    display: flex;
    align-items: center;
}

.content-box {
    margin-top: 50px;
    padding: 0px 100px;
    max-width: 900px;
    z-index: 1100;
}

.content-box.center {
    margin: 0 auto;
    text-align: center;
}

.content-box.wide {
    max-width: 1200px;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 3000;
    padding: 20px 0;
    mix-blend-mode: difference;
}

.navbar {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
    padding: 0 20px;
    box-sizing: border-box;
}

.nav-section {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-section.right {
    justify-content: flex-end;
}

.nav-links a {
    font-family: 'Montserrat', sans-serif;
    margin: 0 10px;
    text-decoration: none;
    color: var(--white);
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 700;
    transition: color var(--transition-fast);
}

.nav-links a:hover {
    color: var(--gold);
}

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1200;
}

.burger-menu span {
    width: 26px;
    height: 2px;
    background: var(--white);
    transition: var(--transition-fast);
}

.burger-menu.open span:nth-child(1) {
    transform: translateY(4px) rotate(45deg);
}

.burger-menu.open span:nth-child(2) {
    transform: translateY(-4px) rotate(-45deg);
}

.mobile-panel {
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, var(--dark-bg), #000);
    backdrop-filter: blur(6px);
    z-index: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-100%);
    transition: var(--transition-slow);
}

.mobile-panel.active {
    transform: translateY(0);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 32px;
    text-align: center;
}

.mobile-nav a {
    font-size: 28px;
    color: var(--white);
    text-decoration: none;
    text-transform: uppercase;
    transition: color var(--transition-fast);
}

.bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
    z-index: -1;
}

.btn-gold {
    display: inline-block;
    margin-top: 24px;
    padding: 16px 42px;
    background: var(--gold);
    color: var(--blue-dark);
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: 0.4s;
}

.btn-gold:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(201, 162, 77, 0.3);
}

.split-content {
    display: flex;
    width: 100%;
    height: 100%;
}

.text-side {
    flex: 1;
    padding: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.image-side {
    flex: 1.2;
    background-size: cover;
    background-position: center;
    filter: grayscale(1);
    transition: 1.5s ease;
}

.full-section:hover .image-side {
    filter: grayscale(1) contrast(1.1);
}

.services-grid,
.team-grid {
    display: grid;
    gap: 40px;
    margin-top: 60px;
}

.services-grid {
    grid-template-columns: repeat(3, 1fr);
}

.team-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 40px;
}

.service-card,
.team-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(201, 162, 77, 0.1);
    transition: 0.4s;
}

.service-card {
    padding: 40px 30px;
}

.service-card:hover,
.team-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
}

.service-card i {
    font-size: 36px;
    color: var(--gold);
    margin-bottom: 20px;
}

.member-img {
    height: 300px;
    background-size: cover;
    background-position: center;
    filter: grayscale(1);
    transition: 0.5s;
}

.team-card:hover .member-img {
    filter: grayscale(0);
}

.member-info {
    padding: 20px;
}

.member-info p {
    color: var(--gold);
    font-size: 12px;
    text-transform: uppercase;
}

.footer-section {
    background: #000;
    align-items: flex-end;
}

.footer-container {
    width: 100%;
    padding: 80px 100px 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col a,
.footer-col p {
    font-size: 14px;
    color: var(--gray);
    text-decoration: none;
    margin-bottom: 10px;
    display: block;
}

.footer-bottom {
    padding-top: 10px;
    text-align: center;
    font-size: 11px;
    color: #444;
}

.map-container {
    padding-top: 35px;
    width: 100%;
    max-width: 600px;
    height: 400px;
    margin: 0 auto 0 auto;
    overflow: hidden;
    border-radius: 6px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(1) contrast(1.1);
}

.map-container iframe:hover {
    filter: none;
}

#contact {
    display: block;
}

@media (max-width: 1024px) {
    :root {
        --container-max: 95%;
    }

    body {
        overflow-x: hidden;
        overflow-y: auto;
    }

    .snap-container {
        height: auto;
        overflow: visible;
        scroll-snap-type: none;
        overflow-x: hidden;
    }

    .full-section {
        height: auto;
        min-height: 80vh;
        display: block;
        padding: 10px 0;
    }

    .footer-bottom p {
        font-size: 12px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 40px;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 40px;
    }

    .content-box {
        padding: 0 40px;
        max-width: 100%;
    }

    .text-side {
        padding: 60px 40px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .team-card .member-img {
        filter: grayscale(0);
    }
}

@media (max-width: 769px) {
    header {
        padding: 10px 0;
        mix-blend-mode: normal;
        background: rgba(5, 5, 5, 0.5);
    }

    .navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        overflow: hidden;
    }

    .nav-section.left.desktop-only,
    .nav-section.right .nav-links.desktop-only {
        display: none !important;
    }

    .desktop-only,
    .nav-links {
        display: none !important;
    }

    .burger-menu {
        display: flex !important;
    }

    h2 {
        font-size: 32px;
        padding: 0;
    }

    .step-num {
        font-size: 80px;
        position: relative;
        left: 0;
        top: 0;
        opacity: 0.1;
        margin-bottom: -20px;
    }

    .split-content {
        flex-direction: column;
    }

    .image-side {
        height: 300px;
        order: -1;
        filter: grayscale(0.5);
    }

    .text-side {
        padding: 40px 20px;
        text-align: center;
    }

    .services-grid,
    .team-grid,
    .footer-grid {
        grid-template-columns: 1fr;
        padding: 0px 0px;
    }

    .team-grid {
        width: 30%;
    }

    .service-card {
        padding: 30px 20px;
    }

    .member-img {
        height: 250px;
        width: 250px;
    }

    .footer-col {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-container {
        padding: 30px 20px;
    }

    .map-container iframe {
        filter: none;
    }

    .nav-section {
        flex: 0 1 auto;
    }

    .nav-logo {
        flex: 1;
        display: flex;
        justify-content: center;
    }

    .burger-menu {
        display: flex !important;
        margin-left: auto;
    }
}