/* =========================================
   RESET / BASE
========================================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:Inter,sans-serif;
    background:
        radial-gradient(circle at 15% 10%, rgba(124,92,255,.14), transparent 35%),
        radial-gradient(circle at 85% 20%, rgba(124,92,255,.06), transparent 30%),
        #05050A;
    color:#F4F4F6;
    line-height:1.5;
    -webkit-font-smoothing:antialiased;
    overflow-x:hidden;
}

.container{
    width:min(1400px,88%);
    margin:0 auto;
}

/* =========================================
   NAVBAR
========================================= */

.navbar{
    position:sticky;
    top:0;
    z-index:100;
    backdrop-filter:blur(18px);
    background:rgba(5,5,10,.72);
    border-bottom:1px solid rgba(255,255,255,.05);
}

.nav-inner{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:28px;
    padding:26px 0;
}

.logo-home{
    text-decoration:none;
    color:inherit;
}

.logo-wrap{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    line-height:1;
    margin-left:-360px;
}

.logo{
    font-size:2.25rem;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:.015em;
    line-height:.95;
}

.header-subtitle{
    margin-top:6px;
    font-size:14px;
    letter-spacing:.16em;
    opacity:.9;
    color:#8B5CF6;
    text-transform:uppercase;
    font-weight:700;
}

nav{
    display:flex;
    align-items:center;
    gap:28px;
}

nav a{
    color:#D5D5DD;
    text-decoration:none;
    font-size:1rem;
    font-weight:700;
    letter-spacing:.06em;
    text-transform:uppercase;
    transition:.3s;
}

nav a:hover{
    color:#8B5CF6;
}

.lang-toggle{
    padding:10px 18px;
    border-radius:999px;
    border:1px solid rgba(255,255,255,.14);
    background:rgba(255,255,255,.04);
    color:#FFF;
    font-size:12px;
    font-weight:700;
    letter-spacing:.08em;
    cursor:pointer;
    transition:.25s;
}

.lang-toggle:hover{
    background:rgba(255,255,255,.08);
    border-color:rgba(255,255,255,.24);
}

/* =========================================
   HERO
========================================= */

.hero{
    padding:8px 0 18px;
    min-height:auto;
    text-align:center;
}

#top{
    scroll-margin-top:120px;
}

.hero .container{
    width:min(2200px,98vw);
    display:flex;
    justify-content:center;
}

.hero-copy{
    width:100%;
    max-width:none;
    display:flex;
    flex-direction:column;
    align-items:center;
}

.hero h1{
    font-size:clamp(44px,4.2vw,76px);
    line-height:.96;
    letter-spacing:-.04em;
    margin:0 auto;
    max-width:none;
    width:100%;
}

.reel-section{
    padding:18px 0 24px;
    margin:0;
}

.reel-frame{
    border-radius:28px;
    overflow:hidden;
    border:1px solid rgba(255,255,255,.05);
    box-shadow:
        0 30px 90px rgba(0,0,0,.5),
        inset 0 1px 0 rgba(255,255,255,.03);
    transition:.35s;
}

.reel-frame:hover{
    transform:translateY(-4px);
    box-shadow:
        0 40px 100px rgba(0,0,0,.55),
        0 0 30px rgba(124,92,255,.10);
}

.reel-frame iframe{
    width:100%;
    aspect-ratio:16/9;
    border:none;
}

/* =========================================
   GENERAL SECTIONS
========================================= */

section{
    padding:120px 0;
}

.section-label{
    color:#8B5CF6;
    text-transform:uppercase;
    font-size:.82rem;
    font-weight:700;
    letter-spacing:.14em;
    margin-bottom:20px;
}

/* =========================================
   ABOUT / SUMMARY
========================================= */

#about{
    scroll-margin-top:180px;
}

.about-section{
    padding-top:0;
    padding-bottom:0;
    margin:0;
}

.two-col{
    display:grid;
    grid-template-columns:.8fr 1.2fr;
    gap:100px;
}

h2{
    font-size:clamp(3rem,5vw,5rem);
    line-height:.95;
    letter-spacing:-.04em;
}

.about-section p{
    margin-bottom:26px;
    font-size:1.12rem;
    line-height:1.95;
    color:#B2B2BE;
}

.summary-cv{
    margin-top:24px;
    display:inline-flex;
    align-self:flex-start;
}

/* =========================================
   BUTTONS
========================================= */

.btn-primary{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:18px 34px;
    border-radius:16px;
    text-decoration:none;
    color:#FFF;
    font-weight:600;
    background:linear-gradient(135deg,#8B5CF6,#6D28D9);
    box-shadow:0 12px 30px rgba(124,92,255,.25);
    transition:.3s;
}

.btn-primary:hover{
    transform:translateY(-3px);
    box-shadow:0 18px 40px rgba(124,92,255,.32);
}

/* =========================================
   CREDITS
========================================= */

.credits-section{
    padding-bottom:32px;
    margin-bottom:32px;
}

.credits-section .container{
    max-width:1700px;
}

.premium-credits{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(340px,1fr));
    gap:36px;
    margin-top:42px;
}

.credit-card{
    display:flex;
    flex-direction:column;
    text-decoration:none;
    overflow:hidden;
    border-radius:22px;
    background:#111;
    transition:.3s ease;
}

.credit-card:hover{
    transform:translateY(-6px);
    box-shadow:0 20px 40px rgba(0,0,0,.35);
}

.credit-card img{
    width:100%;
    aspect-ratio:2/3;
    min-height:460px;
    object-fit:cover;
    display:block;
    background:#161616;
}

.credit-card span{
    padding:18px 20px;
    font-size:16px;
    font-weight:600;
    color:#FFF;
    line-height:1.35;
}

/* =========================================
   CONTACT
========================================= */

.contact-section{
    padding-top:0;
    padding-bottom:140px;
    margin-top:0;
}

.contact-section .container{
    padding:60px;
    border-radius:30px;
    background:
        linear-gradient(
            135deg,
            rgba(124,92,255,.10),
            rgba(10,10,18,.94)
        );
    border:1px solid rgba(255,255,255,.05);
}

.contact-card{
    display:grid;
    grid-template-columns:340px 1fr;
    gap:56px;
    align-items:center;
    padding:8px 56px;
}

.contact-photo{
    width:100%;
    aspect-ratio:1/1;
    border-radius:24px;
    overflow:hidden;
    background:#111;
}

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

.contact-content{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.contact-content h2{
    font-size:72px;
    line-height:.95;
    margin-bottom:18px;
}

.contact-content p,
.contact-content a{
    font-size:20px;
    line-height:1.7;
}

.contact-links{
    display:flex;
    gap:28px;
    margin-top:18px;
}

.contact-links a{
    display:flex;
    align-items:center;
    gap:10px;
    text-decoration:none;
    color:#FFF;
}

.contact-links img{
    width:24px;
    height:24px;
    object-fit:contain;
}

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

@media (max-width:1100px){

    .two-col,
    .premium-credits,
    .contact-card{
        grid-template-columns:1fr;
    }

    .hero h1{
        font-size:clamp(36px,10vw,56px);
    }

    h2{
        font-size:clamp(2.4rem,10vw,4rem);
    }

    .contact-section .container{
        padding:36px;
    }

    .contact-card{
        padding:0;
    }

    .logo-wrap{
        margin-left:0;
    }

    nav{
        gap:16px;
        flex-wrap:wrap;
    }
}

/* =========================================
   POST-CONSOLIDATION ALIGNMENT TWEAKS
========================================= */

/* Move logo further left */
.logo-wrap{
    margin-left: -660px !important;
}

/* Add more horizontal breathing room to hero headline */
.hero-copy{
    padding-left: 200px !important;
    padding-right: 200px !important;
}


/* =========================================
   MOVE LOGO 100PX RIGHT
========================================= */

.logo-wrap{
    margin-left: -560px !important;
}


/* =========================================
   MOVE LOGO 50PX RIGHT
========================================= */

.logo-wrap{
    margin-left: -510px !important;
}


/* =========================================
   MOBILE HOTFIX — HEADER + HERO
========================================= */

@media (max-width: 768px){

    html,
    body{
        overflow-x:hidden !important;
    }

    .navbar{
        overflow:hidden !important;
    }

    .nav-inner{
        flex-direction:column !important;
        align-items:center !important;
        gap:18px !important;
        padding:18px 18px !important;
    }

    .logo-wrap{
        align-items:center !important;
        text-align:center !important;
        margin:0 !important;
        transform:none !important;
    }

    .logo{
        font-size:1.9rem !important;
        line-height:.95 !important;
        margin:0 !important;
        left:auto !important;
    }

    .header-subtitle{
        font-size:10px !important;
        text-align:center !important;
    }

    nav{
        width:100% !important;
        justify-content:center !important;
        flex-wrap:wrap !important;
        gap:14px !important;
    }

    nav a{
        margin:0 !important;
        font-size:.82rem !important;
    }

    .hero h1{
        width:100% !important;
        max-width:100% !important;
        font-size:clamp(38px,11vw,58px) !important;
        line-height:.92 !important;
        margin:0 0 22px 0 !important;
    }

    .hero p{
        max-width:100% !important;
    }
}


/* =========================================
   TRUE MOBILE HERO WIDTH FIX
========================================= */

@media (max-width: 768px){

    .hero-copy{
        padding-left: 0 !important;
        padding-right: 0 !important;

        width:100% !important;
        max-width:100% !important;
    }

    .hero h1{
        width:100% !important;
        max-width:100% !important;

        font-size:clamp(36px,11vw,58px) !important;
        line-height:.92 !important;

        white-space:normal !important;
        word-break:normal !important;
        overflow-wrap:normal !important;
    }
}

