/* --------------------
   RESET
-------------------- */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f5f5f5;
    color: #111;
    overflow-x: hidden;
}


/* --------------------
   LINKS
-------------------- */

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


/* --------------------
   NAVIGATION
-------------------- */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 64px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 clamp(16px, 3vw, 32px);
    background: #fffefd;
    color: #111;
    z-index: 1000;
}

.navbar a {
    font-family: "spent-vf", sans-serif;
    font-size: clamp(16px, 2.5vw, 30px);
    line-height: 1;
}
.logo {
    font-variation-settings: "wght" 600, "wdth" 50;
}

.navbar nav a {
    font-variation-settings: "wght" 300, "wdth" 50;
}

.navbar a:hover {
    opacity: 0.5;
}



/* --------------------
   HERO
-------------------- */

.hero {
    width: 100%;
    padding: 64px 0 0;
    overflow: hidden;
}




/* --------------------
   SHOWREEL
-------------------- */

.showreel {
    position: relative;
    width: 100%;
    max-width: 100%;
}

.showreel video {
    width: 100%;
    max-width: 100%;
    display: block;
}

#sound-toggle {
    position: absolute;
    right: 20px;
    bottom: 20px;
    width: 42px;
    height: 42px;
    padding: 7px;
    background: rgba(0, 0, 0, 0.55);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    opacity: 0.9;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.sound-icon {
    width: 100%;
    height: 100%;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.sound-on {
    display: none;
}

#sound-toggle:hover {
    opacity: 1;
    transform: scale(1.08);
}





/* --------------------
   ABOUT
-------------------- */

.about {
    min-height: 100vh;
    padding: 180px 32px 40px;
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 40px;
}

.about > h2 {
    font-family: "dm-mono", monospace;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0;
    margin: 0;
}

.about-content {
    max-width: 1100px;
    padding-top: 20px;
}

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

.about-intro .highlight {
    color: #ff6400;
}

.about-intro p {
    font-family: "dm-mono", monospace;
    font-size: clamp(28px, 3vw, 48px);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 12px;
}

.about-text {
    max-width: 1000px;
}

.about-text p {
    font-family: "dm-mono", monospace;
    font-size: clamp(16px, 1.4vw, 22px);
    font-weight: 400;
    line-height: 1.35;
    letter-spacing: -0.02em;
    margin-bottom: 32px;
}

.contact {
    margin-top: 100px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;

    font-family: "dm-mono", monospace;
    font-weight: 400;
    letter-spacing: 0;
}

.email {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: clamp(40px, 2vw, 40px);
    color: #111;
}

.email-icon {
    width: clamp(20px, 2vw, 30px);
    height: clamp(20px, 2vw, 30px);
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

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

.contact-links a {
    font-size: 17px;
    color: #ff6400;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    transition: opacity 0.2s ease;
}

.contact a:hover {
    opacity: 0.5;
}

.nav-tag {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-family: "spent-vf", sans-serif;
    font-size: clamp(18px, 1.4vw, 24px);
    font-variation-settings: "wght" 300, "wdth" 50;
    white-space: nowrap;
    color: #ff6400;
}


/* --------------------
   FOOTER
-------------------- */

footer {
    padding: 32px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;

    font-family: "dm-mono", monospace;
    font-size: 12px;
    font-weight: 400;
}





/* --------------------
   MOBILE
-------------------- */

@media (max-width: 700px) {

.navbar {
        height: 56px;
        padding: 0 16px;
    }

    .navbar .logo {
        font-size: clamp(18px, 6vw, 22px);
    }

    .navbar nav a {
        display: none;
    }

    .nav-tag {
    position: static;
    transform: none;
    margin-left: auto;
    font-size: clamp(18px, 3.2vw, 16px);
    text-align: right;
}

    .hero {
        padding: 56px 0 0;
    }

    .about {
        padding: 60px 20px 40px;
        display: block;
    }

    .about h2 {
        margin-bottom: 30px;
    }

     .about-content {
        width: 100%;
        max-width: none;
        margin: 0;
        padding-top: 0;
    }

    .about-intro,
    .about-text {
        width: 100%;
        max-width: none;
    }

.about-intro p {
    font-size: clamp(18px, 7vw, 28px);
    line-height: 1.2;
}


.about-text p {
    font-size: clamp(16px, 4.5vw, 20px);
    line-height: 1.4;
}

    .contact {
        margin-top: 60px;
        display: block;
    }

    .contact-links {
        margin-top: 30px;
        flex-wrap: wrap;
        gap: 15px;
    }

    footer {
    padding: 32px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;

    font-family: "dm-mono", monospace;
    font-size: 12px;
    font-weight: 400;
}

    .socials {
        flex-wrap: wrap;
        gap: 15px;
    }

}
.showreel {
    position: relative !important;
}

#sound-toggle {
    position: absolute !important;
    right: 20px !important;
    bottom: 20px !important;
    z-index: 10 !important;
}

.email {
    max-width: 100%;
    overflow-wrap: anywhere;
    font-size: 19px;
}