




/* =========================================================
   BANANABOY.CA
   CREATIVE AGENCY WEBSITE
   COMPLETE STYLESHEET
   ========================================================= */


/* =========================================================
   COLORS
   ========================================================= */

:root {
    --yellow: #fcf705;
    --blue: #07b0f1;
    --black: #111111;
    --white: #ffffff;
    --orange: #ff7a00;
    --pink: #ff69b4;
}


/* =========================================================
   RESET / GLOBAL
   ========================================================= */

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

html {
    width: 100%;
    max-width: 100%;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    width: 100%;
    max-width: 100%;
    background: var(--yellow);
    color: var(--black);
    font-family: "Space Grotesk", sans-serif;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

img,
video {
    display: block;
    max-width: 100%;
}

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

button,
input,
textarea,
select {
    font: inherit;
}


/* =========================================================
   CURSOR GLOW
   ========================================================= */

.cursor-glow {
    position: fixed;

    width: 30px;
    height: 30px;

    background: var(--blue);

    border-radius: 50%;

    pointer-events: none;

    z-index: 999999;

    transform: translate(-50%, -50%);

    mix-blend-mode: multiply;

    transition:
        width .2s ease,
        height .2s ease;
}


/* =========================================================
   BANANABOY HEADER
   TRANSPARENT / OVER HERO
   ========================================================= */

.site-header {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;
    max-width: 100%;

    z-index: 9998;

    background: transparent;

    border: 0;

    pointer-events: none;
}


/* Allow header elements to receive clicks */

.site-header .navbar,
.site-header .mobile-menu {
    pointer-events: auto;
}


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

.navbar {
    position: relative;

    width: 100%;
    max-width: 100%;

    min-height: 90px;

    display: flex;
    align-items: center;

    padding: 14px 4vw;

    background: transparent;

    border: 0;

    box-sizing: border-box;
}


/* =========================================================
   LOGO
   ========================================================= */

.logo {
    display: flex;
    align-items: center;

    flex: 0 0 auto;

    width: auto;

    max-width: 180px;

    height: auto;

    margin: 0;
    padding: 0;

    text-decoration: none;

    position: relative;
    z-index: 10001;
}

.logo-image {
    display: block;

    width: 135px;
    max-width: 100%;

    height: auto;

    object-fit: contain;

    margin: 0;
    padding: 0;
}


/* =========================================================
   DESKTOP NAVIGATION
   ========================================================= */

.nav-links {
    display: flex;
    align-items: center;

    gap: clamp(18px, 2vw, 32px);

    margin-left: auto;

    padding: 0;
}

.nav-links a {
    position: relative;

    display: inline-block;

    color: var(--black);

    font-family: "DM Mono", monospace;

    font-size: 13px;
    font-weight: 700;

    line-height: 1;

    letter-spacing: .05em;

    white-space: nowrap;

    text-decoration: none;

    transition:
        color .2s ease,
        transform .2s ease;
}

.nav-links a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -8px;

    width: 0;
    height: 3px;

    background: var(--yellow);

    transition: width .2s ease;
}

.nav-links a:hover {
    transform: translateY(-2px);
}

.nav-links a:hover::after {
    width: 100%;
}


/* =========================================================
   DESKTOP SOCIAL ICONS
   ========================================================= */

.nav-socials {
    display: flex;
    align-items: center;

    gap: 8px;

    flex: 0 0 auto;

    margin-left: 24px;
}

.nav-socials a {
    width: 35px;
    height: 35px;

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

    flex: 0 0 35px;

    background: var(--black);

    color: var(--white);

    border: 2px solid var(--black);

    font-size: 14px;

    text-decoration: none;

    transition:
        background .2s ease,
        color .2s ease,
        transform .2s ease;
}

.nav-socials a:hover {
    background: var(--yellow);

    color: var(--black);

    transform: translateY(-3px);
}


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

.nav-button {
    display: inline-flex;

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

    flex: 0 0 auto;

    min-height: 44px;

    margin-left: 18px;

    padding: 0 17px;

    background: var(--yellow);

    color: var(--black);

    border: 3px solid var(--black);

    font-family: "Archivo Black", sans-serif;

    font-size: 12px;

    font-weight: 900;

    line-height: 1;

    white-space: nowrap;

    text-decoration: none;

    box-shadow: 4px 4px 0 var(--black);

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

.nav-button:hover {
    transform: translate(3px, 3px);

    box-shadow: 1px 1px 0 var(--black);
}


/* =========================================================
   MOBILE HAMBURGER
   ========================================================= */

.menu-toggle {
    display: none;

    position: relative;

    z-index: 100002;

    width: 46px;
    height: 46px;

    flex: 0 0 46px;

    margin-left: auto;

    padding: 8px;

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

    flex-direction: column;

    gap: 5px;

    background: var(--yellow);

    border: 3px solid var(--black);

    cursor: pointer;

    box-shadow: 3px 3px 0 var(--black);

    -webkit-tap-highlight-color: transparent;

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

.menu-toggle:hover {
    transform: translate(2px, 2px);

    box-shadow: 1px 1px 0 var(--black);
}

.menu-toggle span {
    display: block;

    width: 21px;
    height: 3px;

    flex: 0 0 3px;

    background: var(--black);

    transition:
        transform .25s ease,
        opacity .2s ease;
}


/* =========================================================
   HAMBURGER → X
   ========================================================= */

.menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}


/* =========================================================
   MOBILE MENU
   ========================================================= */

.mobile-menu {
    position: fixed;

    top: 0;
    right: 0;

    width: 100%;
    max-width: 100vw;

    height: 100dvh;

    background: var(--yellow);

    overflow-x: hidden;
    overflow-y: auto;

    visibility: hidden;

    opacity: 0;

    transform: translate3d(100%, 0, 0);

    z-index: 100000;

    transition:
        transform .35s cubic-bezier(.77, 0, .18, 1),
        opacity .2s ease,
        visibility .35s;
}

.mobile-menu.active {
    visibility: visible;

    opacity: 1;

    transform: translate3d(0, 0, 0);
}


/* =========================================================
   MOBILE MENU INNER
   ========================================================= */

.mobile-menu-inner {
    width: 100%;
    min-height: 100%;

    display: flex;

    flex-direction: column;

    padding:
        105px
        7vw
        35px;
}


/* =========================================================
   MOBILE MENU LINKS
   ========================================================= */

.mobile-menu-links {
    width: 100%;

    display: flex;

    flex-direction: column;

    border-top: 3px solid var(--black);
}

.mobile-menu-links a {
    display: block;

    width: 100%;

    padding: 19px 0;

    color: var(--black);

    border-bottom: 3px solid var(--black);

    font-family: "Archivo Black", sans-serif;

    font-size: clamp(2.4rem, 10vw, 5rem);

    font-weight: 900;

    line-height: .9;

    letter-spacing: -.03em;

    text-transform: uppercase;

    overflow-wrap: break-word;

    transition:
        padding-left .2s ease,
        background-color .2s ease;
}

.mobile-menu-links a:hover {
    padding-left: 12px;
}


/* =========================================================
   MOBILE MENU BOTTOM
   ========================================================= */

.mobile-menu-bottom {
    width: 100%;

    margin-top: auto;

    padding-top: 35px;

    display: flex;

    flex-direction: column;

    gap: 22px;
}


/* =========================================================
   MOBILE SOCIAL ICONS
   ========================================================= */

.mobile-socials {
    display: flex;

    align-items: center;

    gap: 10px;
}

.mobile-socials a {
    width: 46px;
    height: 46px;

    display: flex;

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

    background: var(--black);

    color: var(--white);

    border: 3px solid var(--black);

    font-size: 17px;

    transition:
        background .2s ease,
        color .2s ease,
        transform .2s ease;
}

.mobile-socials a:hover {
    background: var(--white);

    color: var(--black);

    transform: translateY(-2px);
}


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

.mobile-cta {
    width: 100%;

    min-height: 58px;

    display: flex;

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

    padding: 0 20px;

    background: var(--black);

    color: var(--white);

    border: 3px solid var(--black);

    font-family: "Archivo Black", sans-serif;

    font-size: 15px;

    font-weight: 900;

    text-align: center;

    box-shadow: 5px 5px 0 var(--white);

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

.mobile-cta:hover {
    transform: translate(3px, 3px);

    box-shadow: 2px 2px 0 var(--white);
}


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

.hero {
    width: 100%;
    max-width: 100%;

    min-height: 100vh;

    padding: 150px 8% 80px;

    display: flex;

    align-items: center;

    position: relative;

    overflow: hidden;
}

.hero-content {
    width: 65%;

    max-width: 900px;

    position: relative;

    z-index: 5;
}

.eyebrow {
    font-family: "DM Mono", monospace;

    font-size: .8rem;

    font-weight: bold;

    margin-bottom: 25px;

    animation: slideDown 1s ease;
}

.hero h1 {
    font-family: "Archivo Black", sans-serif;

    font-size: clamp(4rem, 9vw, 10rem);

    line-height: .85;

    letter-spacing: -7px;

    animation: heroReveal 1.2s ease;
}

.hero h1 span {
    display: inline-block;

    color: var(--blue);

    animation: wiggle 3s infinite ease-in-out;
}

.hero-description {
    max-width: 550px;

    margin-top: 35px;

    font-size: 1.15rem;

    line-height: 1.6;

    animation: fadeUp 1.5s ease;
}

.hero-buttons {
    display: flex;

    flex-wrap: wrap;

    gap: 15px;

    margin-top: 35px;
}


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

.btn {
    display: inline-block;

    padding: 18px 25px;

    border-radius: 100px;

    font-family: "DM Mono", monospace;

    font-size: .75rem;

    font-weight: bold;

    transition: all .3s ease;
}

.btn-primary {
    background: var(--black);

    color: var(--yellow);
}

.btn-primary:hover {
    background: var(--blue);

    color: var(--black);

    transform: translateY(-5px) rotate(-2deg);
}

.btn-outline {
    border: 3px solid var(--black);
}

.btn-outline:hover {
    background: var(--black);

    color: var(--yellow);

    transform: translateY(-5px);
}


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

.banana-visual {
    position: absolute;

    right: 5%;
    top: 50%;

    transform: translateY(-45%);

    width: 450px;
    height: 450px;

    display: flex;

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

    pointer-events: none;
}

.banana {
    font-size: 18rem;

    animation: floatBanana 5s infinite ease-in-out;

    filter: drop-shadow(20px 25px 0 rgba(0,0,0,.15));

    z-index: 2;
}

.banana-text {
    position: absolute;

    font-family: "Archivo Black", sans-serif;

    font-size: 2rem;

    z-index: 3;
}

.text-one {
    top: 15%;
    left: -5%;

    color: var(--blue);

    transform: rotate(-12deg);

    animation: floatText 4s infinite ease-in-out;
}

.text-two {
    bottom: 15%;
    right: -5%;

    transform: rotate(10deg);

    animation: floatText 5s infinite ease-in-out reverse;
}

.sticker {
    position: absolute;

    width: 100px;
    height: 100px;

    border-radius: 50%;

    background: var(--blue);

    color: var(--black);

    display: flex;

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

    text-align: center;

    font-family: "Archivo Black", sans-serif;

    z-index: 4;

    animation: spinSticker 10s linear infinite;
}

.sticker-one {
    top: 5%;
    right: 0;
}

.sticker-two {
    bottom: 5%;
    left: 0;

    background: var(--black);

    color: var(--yellow);
}


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

.hero-shape {
    position: absolute;

    pointer-events: none;
}

.shape-blue {
    width: 300px;
    height: 300px;

    background: var(--blue);

    border-radius: 50%;

    top: -120px;
    right: 25%;

    animation: pulseShape 5s infinite ease-in-out;
}

.shape-circle {
    width: 70px;
    height: 70px;

    border: 8px solid var(--black);

    border-radius: 50%;

    bottom: 12%;
    left: 5%;

    animation: bounce 3s infinite;
}

.hero-star {
    position: absolute;

    color: var(--blue);

    font-size: 6rem;

    bottom: 10%;
    right: 10%;

    animation: spinStar 10s linear infinite;

    pointer-events: none;
}


/* =========================================================
   MARQUEE
   ========================================================= */

.marquee-section {
    width: 100%;
    max-width: 100%;

    background: var(--black);

    padding: 20px 0;

    overflow: hidden;

    transform: rotate(-2deg) scale(1.03);

    position: relative;

    z-index: 10;
}

.marquee-content {
    display: flex;

    width: max-content;

    animation: marquee 20s linear infinite;
}

.marquee-content span {
    color: var(--yellow);

    font-family: "Archivo Black", sans-serif;

    font-size: 2.5rem;

    white-space: nowrap;

    padding-right: 50px;
}


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

.about {
    width: 100%;
    max-width: 100%;

    background: var(--yellow);

    padding: 120px 8%;

    position: relative;

    overflow: visible;
}

.about-container {
    width: 100%;
    max-width: 1400px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        minmax(0, .9fr)
        minmax(0, 1.1fr);

    gap: 80px;

    align-items: center;

    position: relative;

    z-index: 3;

    min-width: 0;
}


/* =========================================================
   ABOUT PHOTO
   ========================================================= */

.about-photo-wrap {
    position: relative;

    width: 100%;
    max-width: 520px;

    margin: 0 auto;

    min-width: 0;
}

.about-photo {
    position: relative;

    width: 100%;

    aspect-ratio: 4 / 5;

    overflow: hidden;

    background: var(--blue);

    border: 5px solid var(--black);

    box-shadow: 18px 18px 0 var(--blue);

    transform: rotate(-2deg);
}

.about-photo img {
    display: block;

    width: 100%;
    height: 100%;

    max-width: none;

    object-fit: cover;
}

.about-photo-label {
    position: absolute;

    z-index: 5;

    top: -22px;
    left: -25px;

    background: var(--black);

    color: var(--yellow);

    padding: 12px 18px;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1px;

    white-space: nowrap;

    transform: rotate(-5deg);
}

.about-photo-star {
    position: absolute;

    z-index: 5;

    right: -30px;
    top: 35px;

    width: 70px;
    height: 70px;

    display: flex;

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

    background: var(--yellow);

    color: var(--black);

    border: 4px solid var(--black);

    border-radius: 50%;

    font-size: 35px;

    transform: rotate(12deg);
}

.about-photo-tag {
    position: absolute;

    z-index: 5;

    bottom: 20px;
    left: -35px;

    background: var(--blue);

    color: var(--black);

    border: 4px solid var(--black);

    padding: 15px 20px;

    font-size: 13px;

    font-weight: 900;

    line-height: 1.1;

    letter-spacing: 1px;

    transform: rotate(-8deg);
}


/* =========================================================
   ABOUT CONTENT
   ========================================================= */

.about-content {
    width: 100%;

    min-width: 0;

    position: relative;

    z-index: 3;
}

.about-content .section-label {
    display: inline-block;

    background: var(--blue);

    color: var(--black);

    padding: 8px 14px;

    margin-bottom: 25px;

    font-size: 13px;

    font-weight: 900;

    letter-spacing: 2px;

    transform: rotate(-2deg);
}

.about-content h2 {
    width: 100%;

    margin: 0 0 35px;

    font-family: "Archivo Black", sans-serif;

    font-size: clamp(50px, 6vw, 90px);

    line-height: .9;

    letter-spacing: -4px;
}

.about-content h2 span {
    display: inline-block;

    color: var(--blue);

    animation: wiggle 4s infinite ease-in-out;
}

.about-content h2 strong {
    color: var(--black);
}

.about-content p {
    width: 100%;
    max-width: 650px;

    margin: 0 0 20px;

    font-size: 18px;

    line-height: 1.7;
}


/* =========================================================
   ABOUT STATS
   ========================================================= */

.about-stats {
    width: 100%;

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 15px;

    margin: 40px 0;
}

.stat {
    min-width: 0;

    min-height: 100px;

    padding: 20px;

    background: var(--black);

    color: var(--yellow);

    display: flex;

    flex-direction: column;

    justify-content: space-between;
}

.stat strong {
    font-family: "Archivo Black", sans-serif;

    font-size: 35px;

    line-height: 1;
}

.stat span {
    font-family: "DM Mono", monospace;

    font-size: 12px;


    font-weight: 900;

    letter-spacing: 1px;
}

.stat-blue {
    background: var(--blue);

    color: var(--black);
}

.about-content .btn-primary {
    display: inline-block;

    background: var(--black);

    color: var(--yellow);

    padding: 18px 25px;

    border-radius: 100px;

    font-family: "DM Mono", monospace;

    font-size: .75rem;

    font-weight: bold;

    transition: all .3s ease;
}

.about-content .btn-primary:hover {
    background: var(--blue);

    color: var(--black);

    transform: translateY(-5px) rotate(-3deg);
}


/* =========================================================
   ABOUT DECORATIONS
   ========================================================= */

.about-big-banana {
    position: absolute;

    font-size: 13rem;

    right: -20px;
    bottom: -100px;

    transform: rotate(25deg);

    opacity: .18;

    animation: floatBanana 6s infinite ease-in-out;

    pointer-events: none;
}

.about-star {
    position: absolute;

    color: var(--blue);

    font-size: 8rem;

    animation: spinStar 12s linear infinite;

    pointer-events: none;
}

.star-one {
    top: 10%;
    right: 8%;
}

.star-two {
    bottom: 5%;
    left: 4%;

    font-size: 4rem;

    animation-direction: reverse;
}

.about-sticker {
    position: absolute;

    width: 120px;
    height: 120px;

    border-radius: 50%;

    background: var(--blue);

    color: var(--black);

    display: flex;

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

    text-align: center;

    font-family: "Archivo Black", sans-serif;

    font-size: .9rem;

    right: 5%;
    bottom: 10%;

    transform: rotate(12deg);

    animation: floatText 5s infinite ease-in-out;

    z-index: 2;
}


/* =========================================================
   WORK / PORTFOLIO
   ========================================================= */

.work {
    width: 100%;
    max-width: 100%;

    background: var(--yellow);

    padding: 120px 8%;

    overflow: hidden;
}

.section-header {
    margin-bottom: 70px;
}

.portfolio-grid {
    width: 100%;
    max-width: 100%;

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 25px;

    min-width: 0;
}

.project-card {
    width: 100%;

    min-width: 0;

    min-height: 500px;

    padding: 25px;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    position: relative;

    overflow: hidden;

    transition:
        transform .4s cubic-bezier(.2,.8,.2,1);
}

.project-card:hover {
    transform: translateY(-15px) rotate(-1deg);
}

.project-number {
    font-family: "DM Mono", monospace;

    font-weight: bold;
}

.project-art {
    flex: 1;

    display: flex;

    align-items: center;

    justify-content: center;

    min-width: 0;
}

.project-info {
    display: flex;

    justify-content: space-between;

    align-items: flex-end;

    gap: 15px;

    border-top: 2px solid rgba(0,0,0,.2);

    padding-top: 20px;

    min-width: 0;
}

.project-info > * {
    min-width: 0;
}

.project-info p {
    font-family: "DM Mono", monospace;

    font-size: .65rem;

    margin-bottom: 7px;
}

.project-info h3 {
    font-family: "Archivo Black", sans-serif;

    font-size: 1.7rem;

    letter-spacing: -1px;

    overflow-wrap: anywhere;
}

.arrow {
    font-size: 2rem;

    flex-shrink: 0;

    transition: transform .3s;
}

.project-card:hover .arrow {
    transform: rotate(45deg);
}


/* =========================================================
   PROJECT COLORS
   ========================================================= */

.flyers {
    background: var(--blue);
}

.cover-art {
    background: var(--black);

    color: var(--white);
}

.logos {
    background: var(--white);
}

.social {
    background: var(--orange);
}

.websites {
    background: var(--pink);

    grid-column: span 2;
}


/* =========================================================
   FLYER ART
   ========================================================= */

.fake-flyer {
    width: 230px;
    height: 300px;

    padding: 25px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    background: var(--yellow);

    font-family: "Archivo Black", sans-serif;

    font-size: 3rem;

    line-height: .8;

    transform: rotate(-8deg);

    box-shadow: 15px 15px 0 var(--black);

    transition: transform .4s ease;
}

.project-card:hover .fake-flyer {
    transform: rotate(5deg) scale(1.08);
}


/* =========================================================
   COVER ART
   ========================================================= */

.album-cover {
    width: 280px;
    height: 280px;

    padding: 25px;

    position: relative;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    overflow: hidden;

    background: var(--blue);

    color: var(--black);

    font-family: "Archivo Black", sans-serif;

    transform: rotate(8deg);

    transition: all .5s ease;
}

.project-card:hover .album-cover {
    transform: rotate(-5deg) scale(1.1);
}

.album-cover strong {
    font-size: 4rem;

    z-index: 2;
}

.cover-circle {
    width: 180px;
    height: 180px;

    border-radius: 50%;

    background: var(--yellow);

    position: absolute;

    right: -40px;
    bottom: -40px;
}


/* =========================================================
   LOGO ART
   ========================================================= */

.logo-display {
    width: 100%;
    max-width: 100%;

    display: flex;

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

    gap: 20px;

    min-width: 0;

    transition: transform .4s ease;
}

.project-card:hover .logo-display {
    transform: scale(1.15) rotate(-5deg);
}

.logo-mark {
    width: 130px;
    height: 130px;

    flex-shrink: 0;

    border-radius: 50%;

    background: var(--black);

    color: var(--yellow);

    display: flex;

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

    font-family: "Archivo Black", sans-serif;

    font-size: 4rem;
}

.logo-word {
    font-family: "Archivo Black", sans-serif;

    font-size: 3rem;

    line-height: .8;

    color: var(--blue);

    white-space: nowrap;

    overflow-wrap: anywhere;
}


/* =========================================================
   SOCIAL POSTS
   ========================================================= */

.social .project-art {
    position: relative;
}

.social-post {
    width: 200px;
    height: 200px;

    position: absolute;

    display: flex;

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

    font-family: "Archivo Black", sans-serif;

    font-size: 2rem;

    transition: transform .5s ease;
}

.post-one {
    background: var(--black);

    color: var(--yellow);

    transform: rotate(-12deg) translateX(-60px);
}

.post-two {
    background: var(--blue);

    transform: rotate(10deg) translateX(70px);
}

.project-card:hover .post-one {
    transform: rotate(-25deg) translateX(-90px);
}

.project-card:hover .post-two {
    transform: rotate(25deg) translateX(100px);
}


/* =========================================================
   WEBSITE ART
   ========================================================= */

.browser {
    width: 70%;
    max-width: 650px;

    min-width: 0;

    background: var(--white);

    border: 6px solid var(--black);

    box-shadow: 15px 15px 0 var(--black);

    transition: transform .5s ease;
}

.project-card:hover .browser {
    transform: rotate(2deg) scale(1.05);
}

.browser-top {
    height: 45px;

    border-bottom: 5px solid var(--black);

    display: flex;

    align-items: center;

    gap: 10px;

    padding-left: 15px;
}

.browser-top span {

    width: 13px;
    height: 13px;

    flex-shrink: 0;

    border-radius: 50%;

    background: var(--black);
}

.browser-screen {
    height: 230px;

    padding: 35px;

    background: var(--yellow);

    position: relative;

    overflow: hidden;
}

.browser-screen strong {
    font-family: "Archivo Black", sans-serif;

    font-size: 3.5rem;

    line-height: .85;

    position: relative;

    z-index: 2;
}

.browser-shape {
    width: 250px;
    height: 250px;

    background: var(--blue);

    border-radius: 50%;

    position: absolute;

    right: -50px;
    bottom: -100px;
}


/* =========================================================
   SERVICES
   ========================================================= */

.services {
    width: 100%;
    max-width: 100%;

    background: var(--black);

    color: var(--white);

    padding: 150px 8%;

    display: grid;

    grid-template-columns: .8fr 1.2fr;

    gap: 80px;

    overflow: hidden;
}

.services-list {
    border-top: 1px solid rgba(255,255,255,.3);

    min-width: 0;
}

.service-item {
    display: grid;

    grid-template-columns:
        50px
        minmax(0,1fr)
        minmax(0,1fr)
        50px;

    align-items: center;

    gap: 20px;

    padding: 30px 0;

    border-bottom: 1px solid rgba(255,255,255,.3);

    transition: all .3s ease;

    min-width: 0;
}

.service-item:hover {
    color: var(--yellow);

    padding-left: 15px;
}

.service-item span {
    color: var(--blue);

    font-family: "DM Mono", monospace;
}

.service-item h3 {
    font-family: "Archivo Black", sans-serif;

    font-size: 1.5rem;

    min-width: 0;

    overflow-wrap: anywhere;
}

.service-item p {
    font-size: .9rem;

    opacity: .7;
}

.service-item b {
    font-size: 2rem;

    text-align: right;
}


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

.cta {
    width: 100%;
    max-width: 100%;

    min-height: 90vh;

    background: var(--blue);

    padding: 120px 8%;

    display: flex;

    flex-direction: column;

    justify-content: center;

    position: relative;

    overflow: hidden;
}

.cta p {
    font-family: "DM Mono", monospace;

    font-weight: bold;

    margin-bottom: 30px;
}

.cta h2,
.cta-title {
    font-family: "Archivo Black", sans-serif;

    font-weight: 900;

    font-size: clamp(4rem, 10vw, 11rem);

    line-height: .85;

    letter-spacing: -7px;

    position: relative;

    z-index: 2;

    max-width: 100%;

    overflow-wrap: normal;

    word-break: normal;
}

.cta h2 span {
    color: var(--yellow);

    text-shadow: 7px 7px 0 var(--black);
}

.cta-button {
    display: inline-block;

    margin-top: 50px;

    width: fit-content;

    max-width: 100%;

    background: var(--black);

    color: var(--yellow);

    padding: 25px 35px;

    border-radius: 100px;

    font-family: "DM Mono", monospace;

    position: relative;

    z-index: 2;

    transition: all .4s ease;
}

.cta-button:hover {
    background: var(--yellow);

    color: var(--black);

    transform: rotate(-4deg) scale(1.1);
}

.cta-decoration {
    position: absolute;

    font-size: 30rem;

    color: var(--yellow);

    opacity: .5;

    right: -100px;

    pointer-events: none;

    animation: spinStar 20s linear infinite;
}


/* =========================================================
   FOOTER
   ========================================================= */

footer {
    width: 100%;
    max-width: 100%;

    background: var(--yellow);

    padding: 40px 5%;

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 20px;
}

footer p,
.footer-links {
    font-family: "DM Mono", monospace;

    font-size: .65rem;
}

.footer-links {
    display: flex;

    gap: 20px;
}


.footer-links a:hover {
    color: var(--blue);
}


/* =========================================================
   BANANABOY PORTFOLIO POPUP
   ========================================================= */

#bbPortfolio {
    display: none;

    position: fixed;

    inset: 0;

    width: 100%;
    max-width: 100%;

    height: 100%;

    z-index: 999999;

    overflow: hidden;

    box-sizing: border-box;
}

#bbPortfolio.bb-portfolio-open {
    display: flex;

    align-items: center;

    justify-content: center;
}

#bbPortfolio .bb-portfolio-backdrop {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    background: rgba(0,0,0,.88);

    backdrop-filter: blur(12px);

    -webkit-backdrop-filter: blur(12px);

    cursor: pointer;
}

#bbPortfolio .bb-portfolio-window {
    position: relative;

    width: min(1200px,92vw);

    max-width: 100%;

    max-height: 90vh;

    overflow-y: auto;

    overflow-x: hidden;

    background: var(--yellow);

    border: 5px solid var(--black);

    box-shadow: 16px 16px 0 var(--blue);

    z-index: 2;

    box-sizing: border-box;

    animation:
        bbPortfolioEnter
        .45s
        cubic-bezier(.16,1,.3,1);
}

@keyframes bbPortfolioEnter {
    0% {
        opacity: 0;

        transform:
            translateY(40px)
            rotate(2deg)
            scale(.96);
    }

    100% {
        opacity: 1;

        transform:
            translateY(0)
            rotate(0)
            scale(1);
    }
}

#bbPortfolio .bb-portfolio-top {
    display: flex;

    align-items: flex-start;

    justify-content: space-between;

    gap: 30px;

    padding: 50px 55px 35px;

    min-width: 0;
}

#bbPortfolio .bb-portfolio-eyebrow {
    display: block;

    margin-bottom: 15px;

    font-family: "DM Mono", monospace;

    font-size: .7rem;

    font-weight: bold;

    letter-spacing: .08em;
}

#bbPortfolio #bbPortfolioTitle {
    margin: 0;

    font-family: "Archivo Black", sans-serif;

    font-size: clamp(3rem,7vw,7rem);

    line-height: .82;

    letter-spacing: -4px;

    color: var(--black);

    overflow-wrap: anywhere;
}

#bbPortfolio .bb-portfolio-close {
    flex-shrink: 0;

    width: 55px;
    height: 55px;

    border: 4px solid var(--black);

    border-radius: 50%;

    background: var(--blue);

    color: var(--black);

    font-family: Arial,sans-serif;

    font-size: 2rem;

    font-weight: bold;

    cursor: pointer;

    transition:
        transform .25s ease,
        background .25s ease;
}

#bbPortfolio .bb-portfolio-close:hover {
    background: var(--white);

    transform:
        rotate(90deg)
        scale(1.08);
}

#bbPortfolio .bb-portfolio-gallery {
    display: grid;

    grid-template-columns:
        repeat(2,minmax(0,1fr));

    gap: 22px;

    padding: 0 55px 55px;

    min-width: 0;
}

#bbPortfolio .bb-portfolio-item {
    position: relative;

    min-width: 0;

    overflow: hidden;

    background: var(--white);

    border: 4px solid var(--black);

    cursor: pointer;

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

#bbPortfolio .bb-portfolio-item:hover {
    transform:
        translateY(-8px)
        rotate(-1deg);

    box-shadow:
        9px 9px 0 var(--blue);
}

#bbPortfolio .bb-portfolio-image {
    display: block;

    width: 100%;
    max-width: 100%;

    height: auto;

    max-height: 700px;

    object-fit: contain;

    background: var(--white);

    transition: transform .3s ease;
}

#bbPortfolio .bb-portfolio-item:hover .bb-portfolio-image {
    transform: scale(1.04);
}

#bbPortfolio video.bb-portfolio-image {
    display: block;

    width: 100%;
    max-width: 100%;

    height: auto;

    background: var(--black);
}

#bbPortfolio .bb-portfolio-info {
    padding: 18px 20px 22px;

    background: var(--white);

    min-width: 0;
}

#bbPortfolio .bb-portfolio-type {
    display: block;

    margin-bottom: 8px;

    font-family: "DM Mono", monospace;

    font-size: .6rem;

    font-weight: bold;

    color: var(--blue);

    letter-spacing: .04em;
}

#bbPortfolio .bb-portfolio-name {
    margin: 0;

    font-family: "Archivo Black", sans-serif;

    font-size: 1.5rem;

    line-height: 1;

    color: var(--black);

    overflow-wrap: anywhere;
}

#bbPortfolio .bb-portfolio-bottom {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding: 30px 55px;

    background: var(--black);

    color: var(--white);

    min-width: 0;
}

#bbPortfolio .bb-portfolio-bottom span {
    font-family: "DM Mono", monospace;

    font-size: .7rem;

    font-weight: bold;
}

#bbPortfolio #bbPortfolioContact {
    display: inline-block;

    padding: 14px 22px;

    border-radius: 100px;

    background: var(--yellow);

    color: var(--black);

    font-family: "DM Mono", monospace;

    font-size: .7rem;

    font-weight: bold;

    transition:
        transform .25s ease,
        background .25s ease;
}

#bbPortfolio #bbPortfolioContact:hover {
    background: var(--blue);

    transform:
        rotate(-2deg)
        translateY(-3px);
}


/* =========================================================
   BANANABOT
   ========================================================= */

#bananaBot,
#bananaBot * {
    box-sizing: border-box;
}

.banana-bot-toggle {
    position: fixed;

    right: 25px;
    bottom: 25px;

    z-index: 99990;

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 14px 20px 14px 14px;

    border: 4px solid var(--black);

    background: var(--yellow);

    color: var(--black);

    font-family: "DM Mono", monospace;

    font-size: 12px;

    font-weight: 900;

    letter-spacing: 1px;

    cursor: pointer;

    box-shadow: 7px 7px 0 var(--black);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.banana-bot-toggle:hover {
    transform:
        translate(-3px,-3px)
        rotate(-2deg);

    box-shadow:
        10px 10px 0 var(--black);
}

.banana-bot-icon {
    width: 38px;
    height: 38px;

    display: flex;

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

    background: var(--black);

    border-radius: 50%;

    font-size: 21px;
}

.banana-bot-window {
    position: fixed;

    right: 25px;
    bottom: 95px;

    z-index: 99991;

    width: min(390px,calc(100vw - 30px));

    height: min(620px,calc(100vh - 120px));

    display: flex;

    flex-direction: column;

    background: var(--black);

    border: 4px solid var(--black);

    box-shadow:
        12px 12px 0 rgba(0,0,0,.35);

    overflow: hidden;

    opacity: 0;

    visibility: hidden;

    transform:
        translateY(20px)
        scale(.96);

    transform-origin: bottom right;

    transition:
        opacity .25s ease,
        visibility .25s ease,
        transform .25s ease;
}

.banana-bot-window.open {
    opacity: 1;

    visibility: visible;

    transform:
        translateY(0)
        scale(1);
}

.banana-bot-header {
    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 16px 18px;

    background: var(--yellow);

    border-bottom: 4px solid var(--black);
}

.banana-bot-brand {
    display: flex;

    align-items: center;

    gap: 12px;
}

.banana-bot-logo {
    width: 42px;
    height: 42px;

    display: flex;

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

    background: var(--black);

    border-radius: 50%;

    font-size: 23px;
}

.banana-bot-title {
    font-family: "Archivo Black", sans-serif;

    font-size: 19px;

    line-height: 1;

    color: var(--black);
}

.banana-bot-status {
    margin-top: 5px;


    font-family: "DM Mono", monospace;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1px;

    color: var(--black);
}

.banana-bot-close {
    width: 38px;
    height: 38px;

    border: 3px solid var(--black);

    background: transparent;

    color: var(--black);

    font-size: 27px;

    font-weight: 900;

    cursor: pointer;

    transition:
        background .2s ease,
        color .2s ease,
        transform .2s ease;
}

.banana-bot-close:hover {
    background: var(--black);

    color: var(--yellow);

    transform: rotate(5deg);
}

.banana-bot-messages {
    flex: 1;

    min-height: 0;

    padding: 22px 18px;

    overflow-y: auto;

    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(7,176,241,.12),
            transparent 30%
        ),
        var(--black);

    scrollbar-width: thin;
}

.banana-bot-messages::-webkit-scrollbar {
    width: 6px;
}

.banana-bot-messages::-webkit-scrollbar-thumb {
    background: var(--yellow);
}

.banana-bot-message {
    display: flex;

    flex-direction: column;

    margin-bottom: 18px;

    max-width: 88%;
}

.banana-bot-message.user {
    margin-left: auto;

    align-items: flex-end;
}

.banana-bot-message-label {
    margin-bottom: 6px;

    font-family: "DM Mono", monospace;

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 2px;

    color: var(--blue);
}

.banana-bot-message.user .banana-bot-message-label {
    color: var(--yellow);
}

.banana-bot-bubble {
    padding: 13px 15px;

    border: 2px solid rgba(255,255,255,.15);

    background: #181818;

    color: var(--white);

    font-family: "DM Mono", monospace;

    font-size: 12px;

    line-height: 1.65;

    overflow-wrap: anywhere;
}

.banana-bot-message.user .banana-bot-bubble {
    background: var(--blue);

    color: var(--black);

    border-color: var(--blue);

    font-weight: 700;
}

.banana-bot-quick-actions {
    display: flex;

    flex-wrap: wrap;

    gap: 8px;

    margin-top: 10px;
}

.banana-bot-quick {
    padding: 9px 11px;

    border: 2px solid var(--blue);

    background: transparent;

    color: var(--blue);

    font-family: "DM Mono", monospace;

    font-size: 9px;

    font-weight: 900;

    cursor: pointer;

    transition:
        background .2s ease,
        color .2s ease,
        transform .2s ease;
}

.banana-bot-quick:hover {
    background: var(--blue);

    color: var(--black);

    transform: translateY(-2px);
}

.banana-bot-typing {
    display: none;

    align-items: center;

    gap: 5px;

    padding: 0 18px 10px;

    background: var(--black);
}

.banana-bot-typing.active {
    display: flex;
}

.banana-bot-typing span {
    width: 6px;
    height: 6px;

    background: var(--yellow);

    border-radius: 50%;

    animation: bananaBotTyping 1.2s infinite ease-in-out;
}

.banana-bot-typing span:nth-child(2) {
    animation-delay: .15s;
}

.banana-bot-typing span:nth-child(3) {
    animation-delay: .3s;
}

@keyframes bananaBotTyping {
    0%,
    60%,
    100% {
        transform: translateY(0);
        opacity: .4;
    }

    30% {
        transform: translateY(-5px);
        opacity: 1;
    }
}

.banana-bot-input-area {
    flex-shrink: 0;

    display: flex;

    gap: 8px;

    padding: 12px;

    background: #101010;

    border-top: 3px solid #292929;
}

.banana-bot-input-area input {
    min-width: 0;

    flex: 1;

    padding: 13px 14px;

    border: 2px solid #333;

    outline: none;

    background: #1b1b1b;

    color: var(--white);

    font-family: "DM Mono", monospace;

    font-size: 12px;
}

.banana-bot-input-area input::placeholder {
    color: #777;
}

.banana-bot-input-area input:focus {
    border-color: var(--blue);
}

.banana-bot-input-area button {
    flex-shrink: 0;

    width: 48px;

    border: 2px solid var(--blue);

    background: var(--blue);

    color: var(--black);

    font-size: 25px;

    font-weight: 900;

    cursor: pointer;
}

.banana-bot-input-area button:hover {
    background: transparent;

    color: var(--blue);
}


/* =========================================================
   BANANABOT QUOTE FORM
   ========================================================= */

.banana-bot-quote {
    padding: 22px;

    overflow-y: auto;

    max-height: 520px;

    color: var(--white);
}

.banana-bot-quote-header {
    margin-bottom: 22px;
}

.banana-bot-quote-header h3 {
    margin: 6px 0 8px;

    font-size: 22px;

    line-height: 1.05;

    color: var(--white);
}

.banana-bot-quote-header p {
    margin: 0;

    font-size: 13px;

    line-height: 1.5;

    color: var(--white);

    opacity: .8;
}

.banana-bot-field {
    margin-bottom: 14px;
}

.banana-bot-field label {
    display: block;

    margin-bottom: 6px;

    font-family: "DM Mono", monospace;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: .08em;

    color: var(--white);
}

.banana-bot-field input,
.banana-bot-field select,
.banana-bot-field textarea {
    width: 100%;

    padding: 12px;

    border: 2px solid #333;

    border-radius: 0;

    background: var(--white);

    color: var(--black);

    font-family: "Space Grotesk", sans-serif;

    font-size: 14px;

    outline: none;
}

.banana-bot-field textarea {
    resize: vertical;

    min-height: 80px;
}

.banana-bot-field input:focus,
.banana-bot-field select:focus,
.banana-bot-field textarea:focus {
    border-color: var(--blue);
}

.banana-bot-quote-submit {
    width: 100%;

    padding: 14px 16px;

    margin-top: 6px;

    border: 2px solid var(--black);

    background: var(--yellow);

    color: var(--black);

    font-family: "DM Mono", monospace;

    font-size: 12px;

    font-weight: 700;

    cursor: pointer;

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

.banana-bot-quote-submit:hover {
    transform: translate(-2px,-2px);

    box-shadow: 4px 4px 0 var(--black);
}

.banana-bot-quote-submit:disabled {
    opacity: .6;

    cursor: wait;

    transform: none;

    box-shadow: none;
}

.banana-bot-quote-back {
    width: 100%;

    margin-top: 10px;

    padding: 11px;

    border: 0;

    background: transparent;

    color: var(--white);

    font-family: "DM Mono", monospace;

    font-size: 10px;

    cursor: pointer;
}

.banana-bot-success {
    padding: 25px 5px;

    text-align: center;

    color: var(--white);
}

.banana-bot-success-icon {
    font-size: 48px;

    margin-bottom: 10px;
}

.banana-bot-success h3 {
    margin: 0 0 10px;

    font-size: 28px;

    color: var(--white);
}

.banana-bot-success p {
    margin: 6px 0;

    font-size: 14px;

    line-height: 1.5;

    color: var(--white);
}


/* =========================================================
   ANIMATIONS
   ========================================================= */

@keyframes floatBanana {
    0%,
    100% {
        transform: translateY(0) rotate(-3deg);
    }

    50% {
        transform: translateY(-20px) rotate(3deg);
    }
}

@keyframes floatText {
    0%,
    100% {
        transform: translateY(0) rotate(-3deg);
    }

    50% {
        transform: translateY(-15px) rotate(3deg);
    }
}

@keyframes spinSticker {
    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes spinStar {
    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes pulseShape {
    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

@keyframes bounce {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;

        transform: translateY(-20px);
    }

    to {
        opacity: 1;

        transform: translateY(0);
    }
}

@keyframes heroReveal {
    from {
        opacity: 0;

        transform: translateY(40px);
    }

    to {
        opacity: 1;

        transform: translateY(0);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;

        transform: translateY(25px);
    }

    to {
        opacity: 1;

        transform: translateY(0);
    }
}

@keyframes wiggle {
    0%,
    100% {
        transform: rotate(0);
    }

    25% {
        transform: rotate(-3deg);
    }

    75% {
        transform: rotate(3deg);
    }
}


/* =========================================================
   TABLET / MOBILE NAVIGATION — 1050px
   ========================================================= */

@media (max-width: 1050px) {

    /* HEADER */

    .navbar {
        min-height: 76px;
        padding: 10px 20px;
    }

    .logo-image {
        width: 125px;
    }

    .nav-links,
    .nav-socials,
    .nav-button {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    /* HEADER */

    .navbar {
        min-height: 76px;

        padding: 10px 20px;
    }

    .logo-image {
        width: 125px;
    }

    .nav-links,
    .nav-socials,
    .nav-button {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }


    /* HERO */

    .hero {
        padding: 150px 7% 100px;

        min-height: auto;
    }

    .hero-content {
        width: 100%;

        max-width: 100%;
    }

    .hero h1 {
        max-width: 100%;

        overflow-wrap: break-word;
    }

    .banana-visual {
        width: 350px;
        height: 350px;

        right: -140px;

        top: 55%;

        opacity: .18;
    }

    .banana {
        font-size: 13rem;
    }


    /* WORK */

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .websites {
        grid-column: span 1;
    }


    /* ABOUT */

    .about-container {
        display: flex;

        flex-direction: column;

        gap: 60px;
    }

    .about-photo-wrap {
        width: 82%;

        max-width: 500px;
    }

    .about-content {
        width: 100%;
    }


    /* SERVICES */

    .services {
        grid-template-columns: 1fr;

        gap: 60px;
    }

    .service-item {
        grid-template-columns:
            40px
            minmax(0,1fr)
            40px;
    }

    .service-item p {
        display: none;
    }
}


/* =========================================================
   MOBILE — 600px
   ========================================================= */

@media (max-width: 600px) {

    .navbar {
        min-height: 70px;

        padding: 9px 16px;
    }

    .logo-image {
        width: 115px;
    }

    .menu-toggle {
        width: 46px;
        height: 46px;

        flex-basis: 46px;
    }


    /* HERO */

    .hero {
        width: 100%;

        padding: 135px 7% 90px;
    }

    .hero h1 {
        font-size: clamp(3.3rem,15vw,5rem);

        letter-spacing: -3px;

        line-height: .88;
    }

    .hero-description {
        max-width: 100%;

        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;

        align-items: flex-start;

        width: 100%;
    }


    /* HERO BANANA */

    .banana-visual {
        width: 280px;
        height: 280px;

        right: -170px;

        top: 55%;

        opacity: .12;
    }

    .banana {
        font-size: 10rem;
    }

    .banana-text {
        font-size: 1.4rem;
    }

    .sticker {
        width: 70px;
        height: 70px;

        font-size: .7rem;
    }


    /* HERO DECORATIONS */

    .shape-blue {
        width: 180px;
        height: 180px;

        right: -80px;
        top: -60px;
    }

    .hero-star {
        font-size: 4rem;

        right: 3%;
    }


    /* MARQUEE */

    .marquee-content span {
        font-size: 1.7rem;
    }


    /* ABOUT */

    .about {
        padding: 75px 5% 85px;

        overflow: hidden;
    }

    .about-container {
        width: 100%;

        max-width: 600px;

        gap: 48px;
    }

    .about-photo-wrap {
        width: 78%;

        max-width: 360px;

        margin: 0 auto;
    }

    .about-photo {
        border-width: 3px;

        box-shadow: 9px 9px 0 var(--blue);

        transform: rotate(-1.5deg);
    }

    .about-photo-label {
        top: -13px;
        left: -8px;

        padding: 7px 10px;

        font-size: 8px;
    }

    .about-photo-star {
        right: -14px;
        top: 18px;

        width: 45px;
        height: 45px;

        border-width: 2px;

        font-size: 21px;
    }

    .about-photo-tag {
        left: -13px;
        bottom: 10px;

        padding: 8px 10px;

        border-width: 2px;

        font-size: 8px;
    }

    .about-content h2 {
        font-size: clamp(38px,11.5vw,54px);

        line-height: .92;

        letter-spacing: -2px;

        margin-bottom: 22px;
    }

    .about-content p {
        font-size: 15px;

        line-height: 1.6;
    }

    .about-intro {
        font-size: 1.1rem !important;

        line-height: 1.5 !important;
    }

    .about-stats {
        grid-template-columns:
            repeat(3,minmax(0,1fr));

        gap: 6px;

        margin: 25px 0;
    }

    .stat {
        min-height: 72px;

        padding: 10px 8px;
    }

    .stat strong {
        font-size: 23px;
    }

    .stat span {
        font-size: 8px;

        letter-spacing: .4px;
    }

    .about-content .btn-primary {
        width: 100%;

        display: block;

        text-align: center;
    }

    .about-big-banana {
        font-size: 7rem;

        right: -30px;

        bottom: -50px;
    }

    .about-sticker,
    .about-star {
        display: none;
    }


    /* WORK */

    .work {
        padding: 90px 5%;
    }

    .portfolio-grid {
        gap: 18px;
    }

    .project-card {
        min-height: 400px;

        padding: 20px;
    }

    .project-info {
        gap: 10px;
    }

    .project-info h3 {
        font-size: 1.3rem;
    }

    .fake-flyer {
        transform: scale(.8) rotate(-8deg);
    }

    .logo-display {
        gap: 10px;
    }

    .logo-mark {
        width: 90px;
        height: 90px;

        font-size: 3rem;
    }

    .logo-word {
        font-size: 2rem;

        white-space: normal;
    }

    .social-post {
        width: 150px;
        height: 150px;
    }

    .browser {
        width: 95%;

        box-shadow: 9px 9px 0 var(--black);
    }

    .browser-screen {
        height: 200px;

        padding: 25px;
    }

    .browser-screen strong {
        font-size: 2.3rem;
    }


    /* SERVICES */

    .services {
        padding: 90px 7%;
    }

    .service-item {
        grid-template-columns:
            30px
            minmax(0,1fr)
            30px;

        gap: 10px;
    }

    .service-item h3 {
        font-size: 1.15rem;
    }

    .service-item b {
        font-size: 1.5rem;
    }


    /* CTA */

    .cta {
        min-height: auto;

        padding: 90px 6%;

        overflow: hidden;
    }

    .cta h2,
    .cta-title {
        font-size: clamp(2.6rem,13vw,4.5rem);

        line-height: .9;

        letter-spacing: -2px;

        width: 100%;

        max-width: 100%;
    }

    .cta h2 span {
        white-space: nowrap;
    }

    .cta-button {
        margin-top: 35px;

        padding: 20px 28px;
    }

    .cta-decoration {
        font-size: 15rem;

        right: -80px;
    }


    /* FOOTER */

    footer {
        padding: 40px 7%;

        flex-direction: column;

        align-items: flex-start;
    }


    /* BANANABOT */

    .banana-bot-toggle {
        right: 15px;

        bottom: 15px;

        padding: 12px 15px 12px 12px;

        box-shadow: 5px 5px 0 var(--black);

        font-size: 10px;
    }

    .banana-bot-icon {
        width: 34px;
        height: 34px;

        font-size: 19px;
    }

    .banana-bot-window {
        right: 10px;

        bottom: 75px;

        width: calc(100vw - 20px);

        height: min(600px,calc(100vh - 90px));

        box-shadow:
            7px 7px 0 rgba(0,0,0,.35);
    }

    .banana-bot-messages {
        padding: 18px 14px;
    }

    .banana-bot-bubble {
        font-size: 11px;
    }

    .banana-bot-quote {
        padding: 18px;

        max-height: calc(100vh - 150px);
    }

    .banana-bot-quote-header h3 {
        font-size: 19px;
    }

    .banana-bot-field input,
    .banana-bot-field select,
    .banana-bot-field textarea {
        font-size: 16px;
    }


    /* PORTFOLIO POPUP */

    #bbPortfolio.bb-portfolio-open {
        align-items: flex-start;

        padding: 15px;
    }

    #bbPortfolio .bb-portfolio-window {
        width: 100%;

        max-height: calc(100vh - 30px);

        box-shadow:
            8px 8px 0 var(--blue);
    }

    #bbPortfolio .bb-portfolio-top {
        padding: 35px 25px 25px;

        gap: 15px;
    }

    #bbPortfolio #bbPortfolioTitle {
        font-size: 3.2rem;

        letter-spacing: -2px;
    }

    #bbPortfolio .bb-portfolio-close {
        width: 48px;
        height: 48px;
    }

    #bbPortfolio .bb-portfolio-gallery {
        grid-template-columns: 1fr;

        padding:
            0 25px 35px;
    }

    #bbPortfolio .bb-portfolio-image {
        width: 100%;

        height: 300px;
    }

    #bbPortfolio video.bb-portfolio-image {
        height: auto;
    }

    #bbPortfolio .bb-portfolio-bottom {
        flex-direction: column;

        align-items: flex-start;

        padding: 25px;
    }
}


/* =========================================================
   SMALL PHONES — 480px
   ========================================================= */

@media (max-width: 480px) {

    .navbar {
        padding: 8px 14px;
    }

    .logo-image {
        width: 108px;
    }

    .menu-toggle {
        width: 44px;
        height: 44px;

        flex-basis: 44px;
    }

    .mobile-menu-inner {
        padding:
            85px
            20px
            25px;
    }

    .mobile-menu-links a {
        padding: 16px 0;

        font-size: clamp(2.1rem,12vw,3.5rem);
    }

    .mobile-socials a {
        width: 44px;
        height: 44px;
    }

    .mobile-cta {
        min-height: 56px;

        font-size: 14px;
    }
}


/* =========================================================
   VERY SMALL PHONES — 380px
   ========================================================= */

@media (max-width: 380px) {

    .logo-image {
        width: 100px;
    }

    .menu-toggle {
        width: 42px;
        height: 42px;

        flex-basis: 42px;
    }

    .mobile-menu-inner {
        padding:
            80px
            16px
            20px;
    }

    .mobile-menu-links a {
        font-size: 2rem;
    }

    .hero h1 {
        font-size: 3rem;

        letter-spacing: -2px;
    }

    .about-content h2 {
        font-size: 36px;

        letter-spacing: -1.5px;
    }

    .about-photo-wrap {
        width: 75%;
    }

    .about-content p {
        font-size: 14px;
    }

    .about-stats {
        gap: 5px;
    }

    .stat {
        min-height: 66px;

        padding: 8px 6px;
    }

    .stat strong {
        font-size: 20px;
    }

    .stat span {
        font-size: 7px;
    }

    .project-card {
        min-height: 360px;
    }

    .logo-mark {
        width: 70px;
        height: 70px;

        font-size: 2.5rem;
    }

    .logo-word {
        font-size: 1.6rem;
    }

    .banana-bot-toggle-text {
        display: none;
    }

    .banana-bot-toggle {
        width: 55px;
        height: 55px;

        justify-content: center;

        padding: 5px;
    }

    .banana-bot-icon {
        width: 40px;
        height: 40px;
    }


    /* POPUP */

    #bbPortfolio.bb-portfolio-open {
        padding: 10px;
    }

    #bbPortfolio .bb-portfolio-top {
        padding:
            25px 18px 20px;
    }

    #bbPortfolio #bbPortfolioTitle {
        font-size: 2.8rem;
    }

    #bbPortfolio .bb-portfolio-gallery {
        padding-left: 18px;

        padding-right: 18px;
    }

    #bbPortfolio .bb-portfolio-bottom {
        padding: 20px;
    }
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}

/* =========================
   BANANABOY FAQ
========================= */

.bb-faq {
    width: 100%;
    background: #e9e9e9;
    padding: 120px 6vw;
    position: relative;
    overflow: hidden;
}

.bb-faq-inner {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}


/* =========================
   HEADER
========================= */

.bb-faq-header {
    max-width: 850px;
    margin-bottom: 70px;
}

.bb-faq-eyebrow {
    display: inline-block;
    font-family: "DM Mono", monospace;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    background: #111111;
    color: #fcf705;
    padding: 10px 16px;
    margin-bottom: 25px;
}

.bb-faq-header h2 {
    margin: 0;
    font-family: "Archivo Black", sans-serif;
    font-size: clamp(3rem, 8vw, 7.5rem);
    line-height: 0.88;
    letter-spacing: -0.045em;
    text-transform: uppercase;
    color: #111111;
}

.bb-faq-header h2 span {
    color: #07b0f1;
}

.bb-faq-header p {
    max-width: 650px;
    margin-top: 35px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.15rem;
    line-height: 1.65;
    color: #333333;
}


/* =========================
   FAQ LIST
========================= */

.bb-faq-list {
    width: 100%;
    border-top: 3px solid #111111;
}

.bb-faq-item {
    border-bottom: 3px solid #111111;
}


/* =========================
   QUESTION
========================= */

.bb-faq-item summary {
    display: grid;
    grid-template-columns: 70px 1fr 50px;
    align-items: center;
    gap: 20px;

    min-height: 100px;
    padding: 20px 10px;

    cursor: pointer;
    list-style: none;

    transition:
        background 0.25s ease,
        padding 0.25s ease;
}

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

.bb-faq-item summary > span {
    font-family: "DM Mono", monospace;
    font-size: 0.8rem;
    font-weight: 700;
    color: #07b0f1;
}

.bb-faq-item summary h3 {
    margin: 0;

    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(1.15rem, 2vw, 1.65rem);
    font-weight: 700;
    line-height: 1.2;
    color: #111111;
}

.bb-faq-item summary b {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    background: #fcf705;
    color: #111111;

    font-family: "Space Grotesk", sans-serif;
    font-size: 1.6rem;
    font-weight: 700;

    transition:
        transform 0.3s ease,
        background 0.3s ease;
}


/* Hover */

.bb-faq-item summary:hover {
    background: #fcf705;
    padding-left: 25px;
}

.bb-faq-item summary:hover > span {
    color: #111111;
}


/* Open state */

.bb-faq-item[open] summary {
    background: #111111;
}

.bb-faq-item[open] summary h3 {
    color: #ffffff;
}

.bb-faq-item[open] summary > span {
    color: #07b0f1;
}

.bb-faq-item[open] summary b {
    background: #07b0f1;
    transform: rotate(45deg);
}


/* =========================
   ANSWER
========================= */

.bb-faq-answer {
    max-width: 850px;
    padding: 35px 70px 45px 90px;
    animation: bbFaqOpen 0.3s ease;
}

.bb-faq-answer p {
    margin: 0 0 20px;

    font-family: "Space Grotesk", sans-serif;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #333333;
}

.bb-faq-answer p:last-of-type {
    margin-bottom: 25px;
}


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

.bb-faq-button {
    display: inline-flex;
    align-items: center;

    background: #07b0f1;
    color: #111111;

    padding: 15px 22px;

    font-family: "DM Mono", monospace;
    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: none;

    border: 3px solid #111111;
    box-shadow: 6px 6px 0 #111111;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.bb-faq-button:hover {
    transform: translate(4px, 4px);
    box-shadow: 2px 2px 0 #111111;
}


/* =========================
   ANIMATION
========================= */

@keyframes bbFaqOpen {

    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 700px) {

    .bb-faq {
        padding: 80px 20px;
    }

    .bb-faq-header {
        margin-bottom: 45px;
    }

    .bb-faq-header h2 {
        font-size: clamp(3rem, 15vw, 5rem);
    }

    .bb-faq-header p {
        font-size: 1rem;
    }

    .bb-faq-item summary {
        grid-template-columns: 35px 1fr 40px;
        gap: 12px;
        min-height: 85px;
        padding: 18px 5px;
    }

    .bb-faq-item summary h3 {
        font-size: 1.05rem;
    }

    .bb-faq-item summary b {
        width: 36px;
        height: 36px;
        font-size: 1.35rem;
    }

    .bb-faq-item summary:hover {
        padding-left: 12px;
    }

     .bb-faq-answer {
        padding: 25px 20px 35px 47px;
    }

    .bb-faq-answer p {
        font-size: 0.98rem;
    }

}

/* ---------------------------------------------
   PORTFOLIO VIDEOS
--------------------------------------------- */

.bb-portfolio-video {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
    background: #111111;
    object-fit: contain;
}

/* Keep images behaving separately */

.bb-portfolio-image {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: cover;
}


