@font-face {
            font-family: 'Proxima Nova';
            src: local('Proxima Nova Bold'), local('Proxima-Nova-Bold');
            font-weight: 700;
        }
        @font-face {
            font-family: 'Proxima Nova';
            src: local('Proxima Nova Regular'), local('Proxima-Nova-Regular');
            font-weight: 400;
        }

        :root {
            --bg-color: #FFFFFF;
            --font-color: #010101;
            --accent-yellow: #f6ee31;
            --font-headline: 'Proxima Nova', 'Helvetica Neue', Arial, sans-serif;
            --font-body: 'Proxima Nova', 'Helvetica Neue', Arial, sans-serif;
            --shadow-3d: 0 20px 40px rgba(1, 1, 1, 0.06);
            --shadow-3d-hover: 0 40px 80px rgba(1, 1, 1, 0.12);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            cursor: none;
        }

        html { scroll-behavior: smooth; }

        body {
            background-color: var(--bg-color);
            color: var(--font-color);
            font-family: var(--font-body);
            font-weight: 400;
            overflow-x: hidden;
            position: relative;
          /*  perspective: 1500px;*/
        }
.hero-animation-box {
    perspective: 1500px;
}

.bum-logo-canvas-3d {
    transform-style: preserve-3d;
}
        #audio-hint {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background: #010101;
            color: #fff;
            padding: 12px 24px;
            border-radius: 30px;
            font-family: var(--font-headline);
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 1px;
            z-index: 99999;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            border: 1px solid var(--accent-yellow);
            pointer-events: none;
            transition: opacity 0.5s ease;
        }

#custom-cursor {
    width: 14px;
    height: 14px;
    background: #f6ee31;
    border-radius: 50%;
    position: fixed;

    top: 0;
    left: 0;

    pointer-events: none;
    z-index: 999999;

    transform: translate(-50%, -50%);
    will-change: transform;

    transition: width .2s, height .2s, background-color .2s;

    box-shadow: 0 0 10px rgba(246,238,49,.6);

    mix-blend-mode: normal;
}

        .cursor-hovering {
            width: 45px !important;
            height: 45px !important;
            background-color: rgba(246, 238, 49, 0.15) !important;
            border: 2px solid var(--accent-yellow);
            box-shadow: 0 0 25px rgba(246, 238, 49, 0.8);
        }

        h1, h2, h3, h4, .headline-bold {
            font-family: var(--font-headline);
            font-weight: 700;
        }

        header {
            width: 90%;
            margin: 20px 5%;
            padding: 15px 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: fixed;
            top: 0;
            left: 0;
            background: rgba(255, 255, 255, 0.75);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.5);
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.03);
            z-index: 1000;
        }

        .logo-container img {
            height: 55px;
            width: auto;
            display: block;
            mix-blend-mode: multiply;
        }

        nav button, nav a {
            background: none;
            border: none;
            font-family: var(--font-headline);
            font-weight: 700;
            text-decoration: none;
            color: var(--font-color) !important;
            margin-left: 40px;
            font-size: 16px;
            position: relative;
            padding: 5px 0;
            cursor: none;
        }

        nav button::after, nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background-color: var(--accent-yellow);
            transition: width 0.3s ease;
        }

        nav button:hover::after, nav a:hover::after { width: 100%; }


.hero-animation-box {
    display: none;
}
div#heroInteractiveBox {
    display: none;
}

        .hero-grid {
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 50px;
            width: 100%;
            align-items: center;
        }

        .hero-text {
            font-size: 68px;
            line-height: 1.15;
            letter-spacing: -1.5px;
            font-family: var(--font-headline);
            font-weight: 700;
        }

        .hero-animation-box {
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
            height: 500px;
            perspective: 2000px;
            transform-style: preserve-3d;
        }

        .bum-logo-canvas-3d {
            width: 380px;
            height: 380px;
            transform-style: preserve-3d;
            will-change: transform, filter;
            transition: transform 0.15s cubic-bezier(0.25, 1, 0.5, 1), filter 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .bum-logo-canvas-3d img {
            width: 100%;
            height: auto;
            object-fit: contain;
            filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.08));
            transform: translateZ(0);
            backface-visibility: hidden;
            mix-blend-mode: multiply;
            border-radius: 20px;
        }

        /* ONE HOUSE SECTION */
        .one-house-section {
            padding: 120px 5%;
            background-color: #ffffff;
            position: relative;
            z-index: 5;
        }

        .section-header-title {
            font-size: 44px;
            margin-bottom: 60px;
            letter-spacing: -0.5px;
            position: relative;
            display: inline-block;
        }

        .section-header-title::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -10px;
            width: 60px;
            height: 5px;
            background: var(--accent-yellow);
        }

        .verticals-flex-container {
            display: flex;
            width: 100%;
            height: 650px;
            gap: 20px;
            perspective: 1600px;
        }

        .vertical-column-tab {
            flex: 1;
            background: #ffffff;
            border: 1px solid rgba(1, 1, 1, 0.1);
            border-radius: 24px;
            padding: 40px 30px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow-3d);
            transform-style: preserve-3d;
            transition: flex 0.6s cubic-bezier(0.25, 1, 0.5, 1), transform 0.4s ease, box-shadow 0.4s ease, background-color 0.4s ease;
            cursor: none;
        }

        .vertical-column-tab:not(.is-expanded):hover {
            transform: translateY(-8px) rotateY(-4deg);
            box-shadow: var(--shadow-3d-hover);
            border-color: var(--accent-yellow);
            background-color: #fafafa;
        }

        .vertical-column-tab.is-expanded {
            flex: 3.5;
            background: #ffffff;
            border-color: #010101;
            box-shadow: 0 30px 60px rgba(1,1,1,0.12);
        }

        .tab-index-header {
            font-size: 44px;
            font-family: var(--font-headline);
            font-weight: 700;
            color: #010101;
            border-bottom: 1px solid rgba(0,0,0,0.1);
            padding-bottom: 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .tab-index-header::after {
            content: '+';
            font-size: 28px;
            color: var(--accent-yellow);
            transition: transform 0.4s ease;
            text-shadow: 1px 1px 0 #010101;
        }

        .vertical-column-tab.is-expanded .tab-index-header::after {
            transform: rotate(45deg);
            content: '−';
        }

        .tab-vertical-title {
            font-size: 44px;
            text-transform: uppercase;
            margin-top: 30px;
            white-space: nowrap;
        }

        .tab-hidden-content-data {
            opacity: 0;
            visibility: hidden;
            max-height: 0;
            margin-top: 20px;
            overflow: hidden;
            transition: opacity 0.4s ease 0.2s, max-height 0.5s ease, visibility 0.4s;
        }

        .vertical-column-tab.is-expanded .tab-hidden-content-data {
            opacity: 1;
            visibility: visible;
            max-height: 500px;
        }

        .expanded-tags-row {
            font-size: 14px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: #666;
            margin-bottom: 25px;
            border-left: 3px solid var(--accent-yellow);
            padding-left: 10px;
            border-radius: 0;
        }

        .expanded-body-copy {
            font-size: 22px;
            line-height: 1.55;
            color: #010101;
        }

        /* ABOUT DRAWER */
        .about-drawer-overlay {
            position: fixed;
            top: 0;
            right: 0;
            width: 100vw;
            height: 100vh;
            background: rgba(1, 1, 1, 0.4);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            z-index: 10000;
            visibility: hidden;
            opacity: 0;
            transition: opacity 0.5s ease, visibility 0.5s ease;
            display: flex;
            justify-content: flex-end;
        }

        .about-drawer-overlay.is-active {
            visibility: visible;
            opacity: 1;
        }

        .about-drawer-surface {
            width: 55%;
            height: 100%;
            background: #010101;
            color: #ffffff;
            padding: 80px 5%;
            overflow-y: auto;
            box-shadow: -20px 0 60px rgba(0,0,0,0.5);
            transform: translateX(100%) rotateY(10deg);
            transform-origin: right center;
            transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .about-drawer-overlay.is-active .about-drawer-surface {
            transform: translateX(0) rotateY(0deg);
        }

        .close-drawer-btn {
            background: none;
            border: none;
            color: #ffffff;
            font-family: var(--font-headline);
            font-weight: 700;
            font-size: 16px;
            text-transform: uppercase;
            letter-spacing: 2px;
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 60px;
            cursor: none;
        }

        .close-drawer-btn::before {
            content: '←';
            font-size: 20px;
            color: var(--accent-yellow);
        }

        .manifesto-paragraph {
            font-size: 24px;
            line-height: 1.6;
            margin-bottom: 40px;
            color: #e0e0e0;
        }

        .manifesto-list-group {
            margin: 40px 0;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .manifesto-line {
            font-family: var(--font-headline);
            font-weight: 700;
            font-size: 30px;
            color: #ffffff;
            padding-left: 20px;
            border-left: 4px solid var(--accent-yellow);
            border-radius: 0;
            transition: transform 0.3s ease, color 0.3s ease;
        }

        .manifesto-line:hover {
            transform: translateX(15px);
            color: var(--accent-yellow);
        }

        /* WORK SECTION */
        .work-section {
            padding: 120px 5%;
            background-color: #ffffff;
            position: relative;
            z-index: 5;
        }

        .work-category-title {
            font-size: 44px;
            margin: 70px 0 40px 0;
            text-transform: uppercase;
        }

        .work-grid-mesh {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 35px;
        }

        .work-item-card {
            background: #ffffff;
            border: 1px solid rgba(0,0,0,0.06);
            border-radius: 24px;
            padding: 40px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            min-height: 280px;
            box-shadow: var(--shadow-3d);
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

        .work-item-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: var(--shadow-3d-hover);
            border-color: var(--accent-yellow);
        }

        .work-item-card h4 { font-size: 28px; margin-bottom: 12px; 
            color:#000 !important;
        }
        .work-item-card p { font-size: 16px; color: #666; margin-bottom: 25px; }

        .work-link {
            font-family: var(--font-headline);
            font-weight: 700;
            color: var(--font-color);
            text-decoration: none;
            font-size: 14px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            text-transform: uppercase;
        }
.work-item-card a {
    text-decoration: none;
    outline: none;
      color:#000 !important;
}

        .video-triple-row {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-bottom: 50px;
        }

        .video-container-box {
            position: relative;
            width: 100%;
            padding-bottom: 56.25%; 
            height: 0;
            background: #000;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow-3d);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .video-container-box:hover {
            transform: scale(1.03) translateY(-5px);
            box-shadow: 0 30px 60px rgba(0,0,0,0.2);
        }

        .video-container-box iframe {
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 100%;
            border: 0;
        }
 /* CLIENTS */
        .clients-section {
            padding: 120px 5%;
            background: #fafafa;
            position: relative;
            z-index: 5;
        }

        .client-logo-matrix {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 30px;
            margin-top: 60px;
        }

        .client-card-3d {
            background: #ffffff;
            border: 1px solid rgba(0,0,0,0.03);
            border-radius: 16px;
            padding: 35px 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 24px rgba(0,0,0,0.02);
            transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
        }

        .client-card-3d:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.07);
            background-color: var(--accent-yellow);
        }

        .client-card-3d .headline-bold {
            font-size: 18px;
            letter-spacing: 0.5px;
            text-align: center;
        }
        
        
  /* FOOTER */
        footer {
            background-color: #010101;
            color: #ffffff;
            padding: 100px 5% 40px 5%;
            position: relative;
            z-index: 5;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 50px;
            margin-bottom: 10px;
        }

        .footer-col h2 {
            color: var(--accent-yellow);
            font-size: 16px;
            margin-bottom: 25px;
            text-transform: uppercase;
            letter-spacing: 1.5px;
        }

        .footer-col p, .footer-col a {
            color: #aaa !important;
            font-size: 15px;
            line-height: 1.7;
            text-decoration: none;
            margin-bottom: 12px;
            display: block;
            transition: color 0.2s ease;
            outline:none;
        }

        .footer-col a:hover { color: var(--accent-yellow); }

   .news-letter {
    width: 500px;
    text-align: left;
    margin: 30px 0px;
    padding: 20px 20px 10px 0px;
    border-radius: 10px;
    position:relative;
}
.wpcf7 form.sent .wpcf7-response-output {
    border-color: #46b450;
    font-size: 14px;
    margin: -2em !important;
}
.newsletter-input-box input[type="submit"] {
    background: #f6df17;
    border: 0;
    border-radius: 14px;
    padding: 15px 40px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    width: fit-content;
    position: absolute;
    right: 10px;
    top: 20px;
    color:#000;
}

        .newsletter-input-box input {
            background: transparent;
            border: none;
            padding: 12px;
            color: #fff;
            width: 100%;
            outline: none;
            font-family: var(--font-body);
        }

        .newsletter-input-box button {
            background: var(--accent-yellow);
            color: #010101;
            border: none;
            padding: 0 24px;
            font-family: var(--font-headline);
            font-weight: 700;
            border-radius: 8px;
            cursor: none;
        }

        .footer-bottom {
            border-top: 1px solid #111;
            padding-top: 40px;
            display: flex;
            justify-content: space-between;
            font-size: 14px;
            color: #555;
        }
   @media (max-width: 960px) {
            .verticals-flex-container { flex-direction: column; height: auto; }
            .vertical-column-tab.is-expanded { flex: auto; }
            .tab-vertical-title { white-space: normal; }
            .video-triple-row { grid-template-columns: 1fr; }
            .hero-grid { grid-template-columns: 1fr; text-align: center; }
            .hero-text { font-size: 48px; }
            .expanded-body-copy { font-size: 18px; }
            .about-drawer-surface { width: 85%; }
            .bum-logo-canvas-3d { width: 280px; height: 280px; }
            .client-logo-matrix { grid-template-columns: repeat(3, 1fr); }
            .footer-grid { grid-template-columns: 1fr 1fr; }
        }    
        
        
  @media (max-width: 600px) {
            .client-logo-matrix { grid-template-columns: repeat(2, 1fr);
            gap: 15px}
            
 
.news-letter {
    width: fit-content;
}

            .footer-grid { grid-template-columns: 1fr; }
      
            .hero-text {
        font-size: 25px;
    }
    .hero-animation-box {
     height: auto; 
}
.hero-section {
    padding: 150px 5% 0px 5%;
}
.one-house-section {
    padding: 50px 5%;
}
.work-section {
    padding: 60px 5%;
}
.clients-section {
    padding: 60px 5%;
}
.work-grid-mesh {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}
  }  
  
  
    /* work css*/
.work-image img {
    width: 100%;
    margin-bottom: 20px;
    border-radius: 20px;
    max-width: 400px;
    height: auto;
}
.other-work .work-item-card {
    padding:20px; 
 }  
.work-item-card img {
    border-radius: 15px;
}  
.design-market .work-item-card {
    padding:20px;
}
.design-market .work-item-card img {
    margin-bottom: 20px;
    width: 100%;
    max-width: 400px;
    height: auto;
}
.work-content {
    margin-top: 15px;
}
.client-card-3d img {
    width: 100%;
    max-width: 150px;
    height: auto;
}
  /* slider css*/
      .work-image-slider{
    position:relative;
    height:270px;
    overflow:hidden;
    border-radius:20px 20px 0 0;
}

.slides{
    position:absolute;
    inset:0;
    opacity:0;
    transition:.5s;
}
.slides img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}
.slides.active{
    opacity:1;
}


.slider-dots{
    position:absolute;
    bottom:15px;
    left:50%;
    transform:translateX(-50%);
    display:flex;
    gap:8px;
}

.dot{
    width:10px;
    height:10px;
    border-radius:50%;
    background:rgba(255,255,255,.5);
    cursor:pointer;
}

.dot.active{
    background:#f6ee31;
}

  
  .mobile-toggle{
    display:none;
    background:none;
    border:none;
    font-size:32px;
    font-weight:bold;
    color:#010101;
    cursor:none;
}

.mobile-menu{
    position:fixed;
    top:0;
    right:-100%;
    width:320px;
    max-width:90%;
    height:100vh;
    background:#fff;
    z-index:99999;
    transition:.45s ease;
    padding:90px 35px;
    box-shadow:-15px 0 50px rgba(0,0,0,.15);
}

.mobile-menu.active{
    right:0;
}

.mobile-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.45);
    opacity:0;
    visibility:hidden;
    transition:.35s;
    z-index:99998;
}

.mobile-overlay.active{
    opacity:1;
    visibility:visible;
}

.close-menu{
    position:absolute;
    top:30px;
    right:25px;
    border:none;
    background:none;
    font-size:36px;
    font-weight:bold;
    color:#010101;
    cursor:none;
}

.mobile-nav{
    display:flex;
    flex-direction:column;
    gap:28px;
}

.mobile-nav a,
.mobile-nav button{
    background:none;
    border:none;
    text-align:left;
    font-size:26px;
    font-weight:700;
    color:#010101;
    text-decoration:none;
}
.post, .page {
    margin: 0 0 0em !important;
}
.newsletter-input-box .wpcf7 form {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #111;
    border: 1px solid #222;
    border-radius: 18px;
    padding: 10px;
}

.newsletter-input-box .wpcf7 form p {
    margin: 0;
}

.newsletter-input-box .wpcf7 form p:first-child {
    flex: 1;
}

.newsletter-input-box .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}
.newsletter-input-box input[type="email"] {
    width: 100%;
    background: transparent;
    border: 0;
    color: #fff;
    padding: 10px;
    outline: none;
    border: 1px solid #fff;
}


a:visited {
    color: #000;
}
@media(max-width:991px){

    .desktop-nav{
        display:none;
    }

    .mobile-toggle{
        display:block;
    }
}