/* ==========================================================================
   CSS Reset & Variables
   ========================================================================== */
:root {
    /* Colors */
    --color-bg-dark: #0a0a0a;
    --color-bg-light: #f4f4f0;
    --color-text-light: #ffffff;
    --color-glass-bg: rgba(10, 10, 10, 0.4);
    --color-glass-border: rgba(255, 255, 255, 0.1);

    /* Typography */
    --font-corporate: 'Montserrat', sans-serif;
    --font-calligraphy: 'Pinyon Script', cursive;

    /* Spacing & Sizes */
    --header-height: 80px;
}

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

html {
    background-color: #f4f4f0;
}

body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: clip;
    scroll-behavior: smooth;
    /* clip prevents horizontal scroll without breaking position: sticky on iOS */
    background-color: var(--color-bg-light);
    font-family: var(--font-primary);
    -webkit-font-smoothing: antialiased;
}

/* Typography defaults */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
}

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

/* ==========================================================================
   Preloader
   ========================================================================== */


/* ==========================================================================
   Sticky Header
   ========================================================================== */
.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 40px;
    z-index: 10002;
    display: flex;
    justify-content: space-between;
    align-items: center;
    mix-blend-mode: difference;
    color: #ffffff;
    pointer-events: none;
    /* Let clicks pass through empty space */
}

.sticky-header a,
.sticky-header button {
    pointer-events: auto;
    /* Enable clicks on interactive elements */
}

.logo-text {
    font-family: var(--font-corporate);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ffffff;
}

.menu-btn {
    background: transparent;
    border: none;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
}

.menu-text {
    font-family: var(--font-corporate);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.menu-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 12px;
    width: 18px;
}

.menu-icon span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

/* Hover effects for menu */
.menu-btn:hover .menu-icon span:first-child {
    transform: translateY(-2px);
}

.menu-btn:hover .menu-icon span:last-child {
    transform: translateY(2px);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
    position: relative;
    width: 100%;
    height: 200vh;
    /* Allow scrolling within the hero section */
}

.hero-sticky-container {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Background Video */
.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Video Overlay (Optional for better text visibility) */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 2;
}

/* Centered Logo */
.hero-logo-container {
    position: absolute;
    /* Keeps it in center within the sticky container */
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 10px));
    opacity: 1;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo {
    width: 20vw;
    max-width: 1200px;
    height: auto;
    transition: width 0.1s ease-out;
}

@media (max-width: 768px) {
    .hero-logo {
        width: 50vw;
    }
}

.hero-negative-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 10px));
    font-family: var(--font-corporate);
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 700;
    color: #ffffff;
    mix-blend-mode: difference;
    z-index: 15;
    text-align: center;
    pointer-events: none;
    transition: all 2s ease-out;
    white-space: nowrap;
}

/* Rolling Text */
.hero-rolling-text {
    --roll-x: 0vw;
    --roll-y-offset: -20px;
    /* Adjust this value to move the text up or down */
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translateY(calc(-50% + var(--roll-y-offset))) translateX(var(--roll-x));
    font-family: var(--font-corporate);
    font-size: clamp(5rem, 8vw, 8rem);
    font-weight: 800;
    color: #ffffff;
    mix-blend-mode: difference;
    z-index: 20;
    white-space: nowrap;
    pointer-events: none;
}



/* ==========================================================================
   Responsive Design
   ========================================================================== */

/* Default (Large Screens) */
.sm-video {
    display: none;
}

.lg-video {
    display: block;
}

/* ==========================================================================
   Logo Carousel
   ========================================================================== */
.hero-logo-carousel {
    display: none;
    position: absolute;
    bottom: 5vh;
    left: 50%;
    transform: translateX(-50%);
    width: clamp(300px, 50vw, 800px);
    /* Expanded to show more logos, while maintaining centered aesthetic */
    overflow: hidden;
    white-space: nowrap;
    z-index: 10;
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.carousel-track {
    display: inline-flex;
    width: max-content;
    animation: scrollCarousel 30s linear infinite;
}

.carousel-group {
    display: flex;
    align-items: center;
    /* Scaled down responsive gap to fit more logos */
    gap: clamp(1.5rem, 3vw, 3rem);
    padding-right: clamp(1.5rem, 3vw, 3rem);
    /* Must exactly match gap to ensure a seamless loop */
}

.carousel-logo-img {
    height: clamp(15px, 2vw, 25px);
    /* Significantly scaled down */
    width: auto;
    opacity: 0.5;
    /* Add transparency to match the dark hero aesthetic */
}

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

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

/* Medium & Small Screens (Tablets & Mobile) */
@media screen and (max-width: 768px) {
    .hero-section {
        height: 250vh;
        /* Reduced from 350vh to match the new text animation speed and remove excessive scroll gap */
    }

    .sticky-header {
        padding: 20px 20px;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    /* Switch videos */
    .lg-video {
        display: none;
    }

    .sm-video {
        display: block;
    }

    /* Make carousel nearly full width on mobile so multiple logos can be seen */
    .hero-logo-carousel {
        width: 90%;
    }
}

/* ==========================================================================
   Global Grid Background
   ========================================================================== */
.global-grid {
    position: absolute;
    top: 0;
    left: 2.5vw;
    width: 95vw;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    z-index: 1;
    pointer-events: none;
    mix-blend-mode: difference;
}

.grid-col {
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.grid-col:first-child {
    border-left: 1px solid rgba(255, 255, 255, 0.05);
}

/* ==========================================================================
   Logos Reveal Section
   ========================================================================== */
.logos-reveal-section {
    position: relative;
    width: 100%;
    height: 80px;
    background-color: var(--color-bg-dark);
    overflow: hidden;
}

.logos-reveal-inner {
    margin: 0 auto;
    width: 96vw;
    height: 100%;
    display: flex;
    position: relative;
    z-index: 2;
}

.logos-reveal-section .logo-col {
    flex: 1;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.logo-track {
    display: flex;
    flex-direction: column;
    width: 100%;
    animation: stepRollUp 12s infinite;
}

.logo-item {
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-item img {
    width: auto;
    height: clamp(12px, 1.5vw, 25px);
    opacity: 0.9;
}

@keyframes stepRollUp {

    0%,
    20.83% {
        transform: translateY(0);
    }

    25%,
    45.83% {
        transform: translateY(-80px);
    }

    50%,
    70.83% {
        transform: translateY(-160px);
    }

    75%,
    95.83% {
        transform: translateY(-240px);
    }

    100% {
        transform: translateY(-320px);
    }
}

/* ==========================================================================
   Who We Are Section
   ========================================================================== */
.who-we-are-section {
    position: relative;
    width: 100%;
    background-color: #f4f4f0;
    /* Light background to match the style */
    padding: 7vh 0 10vh 0;
    /* Padding for top and bottom */
}

.who-we-are-inner {
    margin-left: 2.5vw;
    width: 95vw;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    box-sizing: border-box;
    align-items: start;
    position: relative;
    z-index: 2;
}

.who-we-are-label {
    grid-column: 1 / 5;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: clamp(0.8rem, 1vw, 1rem);
    color: #ccff00;
    text-transform: uppercase;
    letter-spacing: 0px;
    margin-bottom: 5vh;
    position: relative;
    z-index: 2;
}

.scroll-fill-text {
    grid-column: 1 / 5;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: clamp(1.6rem, 3.5vw, 3.5rem);
    letter-spacing: -0.02em;
    line-height: 1.1;
    text-transform: uppercase;
    margin: 0;
    color: #d0d0d0;
    /* Initial fallback color before JS override */
}

.who-we-are-video {
    grid-column: 1 / 3;
    margin-top: 5rem;
    width: 85%;
    display: flex;
}

.who-we-are-video video {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.who-we-are-content-right {
    grid-column: 3 / 5;
    margin-top: 5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.who-we-are-description {
    position: relative;
    /* Positioning context for quote */
}

.quote-icon {
    position: absolute;
    right: 100%;
    /* Pushes icon entirely to the left of the container (Line 3) */
    margin-right: 1vw;
    /* Gap between quote and text */
    font-size: clamp(2rem, 5vw, 6rem);
    /* Responsive scale */
    line-height: 0.8;
    color: #000;
    font-family: Arial, sans-serif;
    font-weight: 900;
    top: -0.5rem;
}

.who-we-are-description p {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(0.8rem, 1.8vw, 2rem);
    font-weight: 600;
    color: #888;
    line-height: 1.4;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.who-we-are-description strong {
    color: #000;
    font-weight: 700;
}

.who-we-are-spacer {
    height: 150px;
    grid-column: 1 / 5;
}

/* Hire Me Card */
.hire-me-card {
    background: transparent;
    border-radius: 30px;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    flex-direction: column;
    width: calc(100% + 1vw + clamp(1rem, 2.5vw, 3rem));
    margin-left: calc(-1vw - clamp(1rem, 2.5vw, 3rem));
}

.hmc-top {
    background-color: #222222;
    padding: 1.5rem 2.5rem;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.hmc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #a0a0a0;
    font-size: 0.85rem;
    font-weight: 500;
}

.hmc-time {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.hmc-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hmc-profile {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.hmc-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    background-color: #444;
}

.hmc-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
}

.hmc-info {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.hmc-name {
    color: #ccff00;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0;
    letter-spacing: -0.02em;
    white-space: nowrap;
}

.hmc-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hmc-dot {
    width: 8px;
    height: 8px;
    background-color: #00ff00;
    border-radius: 50%;
    animation: blink 1.5s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.hmc-status-text {
    color: #d0d0d0;
    font-size: 0.85rem;
    font-weight: 500;
}

.hmc-btn {
    display: flex;
    align-items: center;
    background-color: #ccff00;
    border-radius: 50px;
    padding: 0.4rem 0.4rem 0.4rem 2.8rem;
    text-decoration: none;
    color: #000;
    font-weight: 800;
    font-size: 1rem;
    gap: 1.5rem;
    transition: transform 0.2s ease;
}

.hmc-btn:hover {
    transform: scale(1.05);
}

.hmc-btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #1a1a1a;
    border-radius: 50%;
}

.hmc-btn-icon svg {
    transition: transform 0.3s ease;
}

.hmc-btn:hover .hmc-btn-icon svg {
    transform: rotate(45deg);
}

.hmc-bottom {
    background-color: #ccff00;
    border-radius: 0 0 30px 30px;
    padding: 1.5rem 2rem 0.6rem 2rem;
    margin-top: -20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    color: #000;
    position: relative;
    z-index: 1;
}

.hmc-bottom-text {
    font-weight: 600;
    font-size: 0.6rem;
    letter-spacing: -0em;
    padding-top: 0.2rem;
}

/* ==========================================================================
   Services Section
   ========================================================================== */
.services-section {
    position: relative;
    width: 100%;
    background-color: #f4f4f0;
    padding-top: 10vh;
}

.services-track {
    height: 150vh;
    /* Determines how long the fill animation lasts */
}

.services-sticky-anchor {
    position: sticky;
    top: 50vh;
    transform: translateY(-50%);
    /* Sticks exactly in the true vertical center of the screen */
    z-index: 10;
}

.services-inner {
    margin-left: 2.5vw;
    width: 95vw;
    box-sizing: border-box;
    position: relative;
    z-index: 2;
}

.services-scroll-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: clamp(1.2rem, 3vw, 3rem);
    letter-spacing: -0.02em;
    line-height: 1.1;
    text-transform: uppercase;
    text-align: center;
    margin: 0 auto;
    color: #d0d0d0;
    will-change: transform;
}

/* Bento Grid */
.services-bento-grid {
    display: flex;
    gap: 0.8rem;
    width: 85%;
    margin: 3vh auto 0 auto;
    /* Centered, gap between text and layout */
    padding-bottom: 7vh;
}

/* Reveal Blur Animation Classes */
.reveal-blur {
    opacity: 0;
    transform: translateY(60px);
    filter: blur(15px);
    transition: opacity 1s cubic-bezier(0.25, 1, 0.5, 1), transform 1s cubic-bezier(0.25, 1, 0.5, 1), filter 1s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-blur.visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.bento-left {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    flex: 4;
}

.bento-row-top {
    display: flex;
    gap: 0.8rem;
    height: clamp(200px, 40vh, 400px);
}

.bento-row-bottom {
    display: flex;
    gap: 0.8rem;
    height: clamp(150px, 30vh, 300px);
}

.bento-vid-card {
    flex: 1;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    position: relative;
    overflow: hidden;
}


/* Colors from image */
.bento-vid-card.c-light-green {
    background-color: #1e1e1e;
    color: #000;
}

.bento-vid-card.c-dark-grey {
    background-color: #1e1e1e;
}

.bento-vid-card.c-neon-green {
    background-color: #1e1e1e;
    color: #000;
}

.bento-vid-card.c-med-grey {
    background-color: #1e1e1e;
}

.bento-vid-card.c-black {
    background-color: #1e1e1e;
}

.bento-vid-card video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    /* Or 0 until uploaded */
}

.bento-vid-card span {
    position: relative;
    z-index: 2;
}

/* Right Text Block */
.bento-right {
    flex: 1;
    background-color: #1a1a1a;
    border-radius: 6px;
    padding: 2.5rem 1.5rem;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    font-family: 'Montserrat', sans-serif;
}

.bento-title {
    color: #ccff00;
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
}

.bento-desc {
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1.4;
    font-weight: 500;
    margin: 0 0 1.5rem 0;
}

.bento-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    color: #d0d0d0;
    z-index: 2;
}

.bento-list li {
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.2rem;
}

.bento-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #ffffff;
}

.bento-btn {
    display: inline-flex;
    align-items: center;
    background-color: #ffffff;
    color: #000000;
    padding: 0.3rem 0.4rem 0.4rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
    align-self: flex-start;
    gap: 1rem;
    transition: transform 0.2s ease;
    z-index: 2;
}

.bento-btn:hover {
    transform: scale(1.05);
}

.bento-btn-icon svg {
    transition: transform 0.3s ease;
}

.bento-btn:hover .bento-btn-icon svg {
    transform: rotate(45deg);
}

.bento-btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1a1a1a;
    color: #ffffff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

.bento-metallic-img {
    position: absolute;
    bottom: -30%;
    right: -30%;
    width: 140%;
    max-width: none;
    object-fit: contain;
    z-index: 1;
    pointer-events: none;
}

/* ==========================================================================
   Responsive Who We Are Section
   ========================================================================== */
@media screen and (max-width: 992px) {
    .who-we-are-description {
        grid-column: 1 / 4;
        grid-row: 3;
        /* Move to the row below the scroll text */
        margin-top: 3rem;
        display: flex;
        gap: 1rem;
        align-items: flex-start;
    }

    .quote-icon {
        position: static;
        margin-right: 0;
    }

    .who-we-are-video {
        grid-column: 1 / 5;
        grid-row: 4;
        /* Move below the description */
        margin-top: 3rem;
        width: 97%;
    }
}

/* ==========================================================================
   Responsive Bento Grid
   ========================================================================== */
@media screen and (max-width: 1024px) {
    .services-bento-grid {
        flex-direction: column;
        width: 90%;
    }

    .bento-left {
        width: 100%;
        flex: none;
    }

    .bento-right {
        width: 100%;
        flex: none;
        padding: 3rem 2rem;
    }

    .bento-metallic-img {
        width: 80%;
        right: -10%;
        bottom: -20%;
    }
}

@media screen and (max-width: 768px) {
    .services-bento-grid {
        width: 95%;
        gap: 15px;
    }

    .bento-left {
        gap: 10px;
    }

    .bento-row-top {
        flex-direction: row;
        height: 160px;
        gap: 10px;
    }

    .bento-row-top .bento-vid-card {
        height: 100%;
        flex: 1;
    }

    .bento-row-bottom {
        flex-direction: row;
        flex-wrap: wrap;
        height: auto;
        gap: 10px;
    }

    .bento-row-bottom .bento-vid-card {
        flex: 1 1 40%;
        height: 160px;
    }

    .bento-row-bottom .bento-vid-card.c-black {
        height: 260px;
    }

    .bento-vid-card {
        font-size: 1rem;
    }

    .bento-right {
        padding: 2rem 1.5rem;
    }

    .bento-title {
        font-size: 1.4rem;
    }

    .bento-desc {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .bento-list li {
        font-size: 0.9rem;
    }

    .bento-metallic-img {
        width: 120%;
        right: -40%;
        bottom: -60%;
    }
}

/* ==========================================================================
   Text Carousel
   ========================================================================== */
.text-carousel-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    padding: 3vh 0;
    position: relative;
    z-index: 2;
    margin-top: 5vh;
}

.text-carousel-track {
    display: inline-flex;
    width: max-content;
    animation: scrollTextCarousel 30s linear infinite;
}

.text-carousel-group {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding-right: 1.5rem;
}

.text-carousel-group span {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2rem, 4vw, 4rem);
    font-weight: 900;
    color: #000000;
    text-transform: capitalize;
}

.text-carousel-group span.dot {
    display: inline-block;
    width: clamp(10px, 1.5vw, 15px);
    height: clamp(10px, 1.5vw, 15px);
    background-color: #ccff00;
    border-radius: 50%;
}

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

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

/* ==========================================================================
   Selected Work Section
   ========================================================================== */
.selected-work-section {
    padding: 13vh 0;
    text-align: center;
    background-color: #ffffff;
    overflow: hidden;
    position: relative;
}

.selected-work-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: clamp(0.8rem, 1vw, 1rem);
    color: #ccff00;
    text-transform: uppercase;
    letter-spacing: 0px;
    margin-bottom: 10vh;
    position: relative;
    z-index: 2;
}

.sw-carousel-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    height: clamp(300px, 50vh, 550px);
    perspective: 1500px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.sw-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
}

.sw-slide {
    position: absolute;
    top: 50%;
    left: 50%;
    width: clamp(250px, 45vw, 650px);
    aspect-ratio: 7016 / 4961;
    height: auto;
    overflow: hidden;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.8s ease, z-index 0s;
    opacity: 0;
    z-index: 1;
    transform: translate(-50%, -50%) translateX(0) scale(0.8) translateZ(-100px);
}

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

/* Slide States */
.sw-slide.active {
    opacity: 1;
    z-index: 3;
    transform: translate(-50%, -50%) translateX(0) scale(1) translateZ(0);
}

.sw-slide.prev {
    opacity: 1;
    z-index: 2;
    transform: translate(-50%, -50%) translateX(-65%) scale(0.8) translateZ(-100px);
}

.sw-slide.next {
    opacity: 1;
    z-index: 2;
    transform: translate(-50%, -50%) translateX(65%) scale(0.8) translateZ(-100px);
}

/* Hidden slides */
.sw-slide.hidden-left {
    opacity: 0;
    z-index: 1;
    transform: translate(-50%, -50%) translateX(-130%) scale(0.6) translateZ(-200px);
}

.sw-slide.hidden-right {
    opacity: 0;
    z-index: 1;
    transform: translate(-50%, -50%) translateX(130%) scale(0.6) translateZ(-200px);
}

.sw-btn-container {
    margin-top: 12vh;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.sw-btn {
    background-color: #000000;
    color: #ffffff;
    border: 1px solid #000;
    font-family: 'Montserrat', sans-serif;
}

.sw-btn .bento-btn-icon {
    background-color: #ccff00;
    color: #000;
}

.sw-btn:hover {
    background-color: #ccff00;
    color: #000000;
    border-color: #ccff00;
}

.sw-btn:hover .bento-btn-icon {
    background-color: #000;
    color: #ccff00;
}

/* ==========================================================================
   Why Choose Us Section
   ========================================================================== */
.why-choose-us-section {
    position: relative;
    width: 100%;
    height: 300vh;
    /* Scroll track height */
    background-color: #f4f4f0;
}

.wcu-sticky-wrapper {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* ==========================================================================
   Homepage Wipe Preloader
   ========================================================================== */
.hp-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 20000;
    pointer-events: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hp-preloader-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f4f4f0;
    z-index: 19999;
}

.hp-preloader-text {
    position: absolute;
    font-family: var(--font-corporate);
    font-size: clamp(1rem, 2vw, 1.5rem);
    font-weight: 700;
    letter-spacing: 4px;
    color: #0b0b0b;
    z-index: 20001;
    opacity: 0;
    text-transform: uppercase;
    transform: scale(0.9);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.hp-preloader-text.is-visible {
    opacity: 1;
    transform: scale(1);
}

.hp-wipe-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    z-index: 20000;
}

.hp-wipe-panel {
    flex: 1;
    height: 100%;
    background-color: #ccff00;
    transform: translateY(100%);
    will-change: transform;
    box-shadow: 1px 0 0 #ccff00, -1px 0 0 #ccff00;
}

.wcu-inner {
    width: 90%;
    max-width: 1200px;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: clamp(3rem, 3vh, 3rem);
}

.wcu-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: clamp(0.8rem, 1vw, 1rem);
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0px;
    margin: 0;
}

.wcu-dynamic-text-container {
    height: clamp(10px, 1vh, 12px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.wcu-dynamic-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: clamp(2rem, 3vw, 3rem);
    color: #d0d0d0;
    /* Initial color before fill */
    text-transform: uppercase;
    letter-spacing: -1px;
    margin: 0;
    line-height: 1.1;
    will-change: opacity;
}

/* Fade Out Animation */
.wcu-fade-out {
    animation: wcuFadeOut 0.3s ease-in forwards;
}

@keyframes wcuFadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.wcu-timeline-container {
    position: relative;
    width: 100%;
    margin-top: clamp(2rem, 5vh, 6rem);
    display: flex;
    justify-content: center;
}

.wcu-svg {
    width: 100%;
    height: auto;
    display: block;
    overflow: visible;
}

.wcu-curve-fill {
    will-change: stroke-dashoffset;
}

.wcu-dot {
    transition: fill 0.3s ease;
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */
.testimonials-section {
    position: relative;
    width: 100%;
    background-color: #f4f4f0;
    padding: 10vh 0;
}

.testimonials-inner {
    margin-left: 2.5vw;
    width: 95vw;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: center;
}

.testimonials-title {
    grid-column: 1 / 5;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: clamp(0.8rem, 1vw, 1rem);
    color: #ccff00;
    text-transform: uppercase;
    margin-bottom: 10vh;
}

.testimonials-content {
    display: contents;
}

.test-left {
    grid-column: 1 / 2;
    display: flex;
    flex-direction: column;
    container-type: inline-size;
    align-items: stretch;
}

.test-score {
    font-family: 'Anton', sans-serif;
    font-size: 85cqi;
    /* Scales perfectly to column width */
    font-weight: normal;
    color: #0b0b0b;
    line-height: 0.85;
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
    text-align: center;
}

.test-stars {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    color: #111;
}

.test-right {
    grid-column: 3 / 5;
    display: flex;
    flex-direction: column;
    width: 100%;
    font-family: 'Montserrat', sans-serif;
}

.test-stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.test-stat-label {
    font-weight: 800;
    font-size: 0.9rem;
    color: #111;
    text-transform: uppercase;
}

.test-stat-value {
    font-weight: 700;
    font-size: 0.9rem;
    color: #555;
    text-transform: uppercase;
}

.test-stat-divider {
    border: none;
    border-bottom: 1px dotted #ccc;
    width: 100%;
    margin: 2rem 0;
}

/* Reviews Bento Grid */
.test-reviews-container {
    grid-column: 1 / 5;
    margin-top: 4em;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.tr-col {
    display: flex;
    flex-direction: column;
    padding: 2.5rem;
    position: relative;
    height: 100%;
}

.tr-green-box {
    grid-column: 1 / 2;
    background-color: #ccff00;
    justify-content: space-between;
}

.tr-green-top {
    display: flex;
    gap: 1.5rem;
}

.tr-stat h3 {
    font-family: 'Anton', sans-serif;
    font-size: 5rem;
    line-height: 1;
    margin-bottom: 0.5rem;
    font-weight: normal;
    color: #000;
}

.tr-stat p {
    font-size: 0.55rem;
    font-weight: 800;
    color: #333;
}

.tr-green-mid {
    margin-top: 6rem;
}

.tr-logo {
    font-family: 'Anton', sans-serif;
    font-size: 1.5rem;
    font-weight: normal;
    margin-bottom: 1.5rem;
    color: #000;
}

.tr-headline {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.4rem;
    line-height: 1.1;
    margin-bottom: 1rem;
    text-transform: uppercase;
    color: #000;
}

.tr-subtext {
    font-size: 0.8rem;
    font-weight: 600;
    color: #333;
}

.tr-review {
    background-color: #1e1e1e;
    justify-content: space-between;
}

.tr-review-top {
    flex-grow: 1;
    margin-bottom: 3rem;
}

.tr-stars {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.2em;
    color: #ccff00;
}

.tr-text {
    font-size: 1.05rem;
    line-height: 1.5;
    font-weight: 500;
    color: #eaeaea;
}

.tr-review-stats {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.5rem;
    margin-bottom: 2rem;
}

.tr-r-stat h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.4rem;
    margin-bottom: 0.3rem;
    color: #ffffff;
}

.tr-r-stat p {
    font-size: 0.55rem;
    font-weight: 800;
    color: #999999;
}

.tr-review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.5rem;
}

.tr-review-author img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    filter: grayscale(100%);
}

.tr-author-info h5 {
    font-weight: 800;
    font-size: 0.8rem;
    color: #ffffff;
    margin-bottom: 0.2rem;
}

.tr-author-info p {
    font-size: 0.6rem;
    font-weight: 600;
    color: #999999;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .selected-work-section {
        padding: 8vh 0;
    }

    .selected-work-title {
        margin-bottom: 6vh;
    }

    .sw-btn-container {
        margin-top: 8vh;
    }

    .who-we-are-video {
        grid-column: 1 / 5;
        width: 100%;
        margin-top: 3rem;
    }

    .who-we-are-content-right {
        display: contents;
    }

    .who-we-are-description {
        grid-column: 1 / 4;
        margin-top: 2rem;
    }

    .hire-me-card {
        grid-column: 1 / 5;
        width: 100%;
        margin-left: 0;
        margin-top: 2rem;
    }

    .testimonials-content {
        display: contents;
    }

    .test-left {
        grid-column: 1 / 3;
        align-items: flex-start;
    }

    .test-score {
        text-align: left;
    }

    .test-stars {
        justify-content: flex-start;
    }

    .test-right {
        grid-column: 1 / 5;
        margin-top: 2rem;
    }

    .tr-col {
        padding: 1.5rem;
    }

    .tr-green-mid {
        margin-top: 2rem;
    }

    .tr-stat h3 {
        font-size: 2.5rem;
    }

    .tr-logo {
        margin-bottom: 0.5rem;
        font-size: 1.2rem;
    }

    .tr-headline {
        font-size: 1.1rem;
    }

    .tr-text {
        font-size: 0.9rem;
    }

    .tr-r-stat h4 {
        font-size: 1.1rem;
    }

    .tr-review-top {
        margin-bottom: 1.5rem;
    }

    .tr-review-stats {
        padding-top: 1rem;
        margin-bottom: 1.5rem;
    }

    .tr-review-author {
        padding-top: 1rem;
    }

    .test-reviews-container {
        row-gap: 0;
        /* Let borders handle visual separation */
    }

    .tr-col.tr-green-box {
        grid-column: 1 / 3;
    }

    .tr-col:nth-child(2) {
        grid-column: 3 / 5;
    }

    .tr-col:nth-child(3) {
        grid-column: 1 / 3;
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    .tr-col:nth-child(4) {
        grid-column: 3 / 5;
        border-left: 1px solid rgba(255, 255, 255, 0.05);
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }
}

@media (max-width: 768px) {
    .tr-col {
        padding: 1rem;
    }

    .tr-green-mid {
        margin-top: 1.5rem;
    }

    .tr-stat h3 {
        font-size: 2rem;
    }

    /* Hire Me Card overrides */
    .hmc-top {
        padding: 1rem;
    }

    .hmc-avatar {
        width: 40px;
        height: 40px;
    }

    .hmc-profile {
        gap: 0.6rem;
    }

    .hmc-name {
        font-size: 0.95rem;
    }

    .hmc-status-text {
        font-size: 0.7rem;
    }

    .hmc-header {
        font-size: 0.7rem;
    }

    .hmc-btn {
        padding: 0.3rem 0.3rem 0.3rem 0.8rem;
        gap: 0.5rem;
        font-size: 0.75rem;
    }

    .hmc-btn-icon {
        width: 28px;
        height: 28px;
    }

    .hmc-bottom {
        padding: 1.5rem 1rem 0.6rem 1rem;
    }

    .hmc-bottom-text {
        font-size: 0.85rem;
    }

    .tr-stat p {
        font-size: 0.5rem;
    }

    .tr-logo {
        margin-bottom: 0.5rem;
        font-size: 1rem;
    }

    .tr-headline {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }

    .tr-subtext {
        font-size: 0.7rem;
    }

    .tr-text {
        font-size: 0.8rem;
    }

    .tr-r-stat h4 {
        font-size: 1rem;
    }

    .tr-r-stat p {
        font-size: 0.5rem;
    }

    .tr-review-top {
        margin-bottom: 1rem;
    }

    .tr-review-stats {
        padding-top: 0.8rem;
        margin-bottom: 1rem;
    }

    .tr-review-author {
        padding-top: 0.8rem;
    }

    .tr-review-author img {
        width: 35px;
        height: 35px;
    }

    .tr-author-info h5 {
        font-size: 0.7rem;
    }

    .tr-author-info p {
        font-size: 0.5rem;
    }

    .selected-work-section {
        padding: 6vh 0;
    }

    .selected-work-title {
        margin-bottom: 4vh;
    }

    .sw-btn-container {
        margin-top: 5vh;
    }

    .sw-slide.prev {
        transform: translate(-50%, -50%) translateX(-80%) scale(0.85) translateZ(-100px);
    }

    .sw-slide.next {
        transform: translate(-50%, -50%) translateX(80%) scale(0.85) translateZ(-100px);
    }
}

/* ==========================================================================
   Reach Out Section
   ========================================================================== */
.reach-out-section {
    position: relative;
    width: 100%;
    background-color: #ffffff;
    padding: 5vh 0;
    color: #1e1e1e;
}

.reach-out-inner {
    margin-left: 2.5vw;
    width: 95vw;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    box-sizing: border-box;
    position: relative;
    z-index: 2;
}

.ro-quote-col {
    grid-column: 1 / 2;
    display: flex;
    justify-content: flex-end;
    /* Align quote right before line 2 */
    align-items: flex-start;
    /* Keep quote at the top */
    padding-right: 0vw;
    /* Slight gap from the line */
}

.ro-quote {
    font-family: 'Anton', sans-serif;
    font-size: 8rem;
    color: #1e1e1e;
    line-height: 1;
}

.ro-text-col {
    grid-column: 2 / 5;
    /* Span all the way to line 5 */
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    /* 3 columns representing global cols 2, 3, 4 */
    align-items: end;
    /* Align items to the bottom horizontally */
}

.ro-content {
    grid-column: 1 / 3;
    /* Spans 2 out of 3 internal columns -> ends perfectly on line 4 */
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    padding-right: 0vw;
    /* Small gap to visually respect the grid line */
}

.ro-header {
    font-family: var(--font-corporate);
    font-size: 0.85rem;
    color: #666;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    font-weight: 600;
}

.ro-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1rem, 2vw, 2rem);
    font-weight: 900;
    color: #1e1e1e;
    line-height: 1.1;
    margin-bottom: 3rem;
    letter-spacing: -1px;
}

.ro-profile {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.ro-profile-info {
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.ro-profile-info h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 0.9rem;
    margin: 0;
    letter-spacing: 0.5px;
}

.ro-profile-info p {
    font-family: var(--font-corporate);
    font-size: 0.7rem;
    color: #666;
    margin: 0;
    text-transform: uppercase;
    font-weight: 600;
}

.ro-profile img {
    width: 50px;
    height: 50px;
    border-radius: 5px;
    /* slight curve like the image */
    object-fit: cover;
}

.ro-btn-container {
    grid-column: 3 / 4;
    /* Last internal column -> ends exactly on line 5 */
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    padding-bottom: 0.5rem;
}

.ro-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-corporate);
    font-size: 0.8rem;
    font-weight: 700;
    color: #1e1e1e;
    text-decoration: none;
    text-transform: uppercase;
    transition: transform 0.2s ease;
}

.ro-btn:hover {
    transform: translateX(5px);
}

.ro-btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background-color: #ccff00;
    color: #000;
}

/* Responsive */
@media (max-width: 1024px) {
    .reach-out-section {
        padding: 2vh 0;
    }

    .ro-quote-col {
        grid-column: 1 / 2;
        grid-row: 1;
        justify-content: flex-end;
        align-items: flex-start;
        margin-bottom: 0;
        padding-right: 0rem;
    }

    .ro-quote {
        font-size: 3rem;
    }

    .ro-text-col {
        grid-column: 2 / 4;
        grid-row: 1;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        text-align: right;
        gap: 0;
    }

    .ro-content {
        align-items: flex-end;
        text-align: right;
        padding-right: 0;
    }

    .ro-header {
        margin-bottom: 2rem;
    }

    .ro-title {
        text-align: right;
        margin-bottom: 3rem;
        font-size: clamp(1.2rem, 5vw, 1.8rem);
    }

    .ro-profile {
        align-self: flex-end;
        justify-content: flex-end;
        flex-direction: row;
    }

    .ro-profile-info {
        text-align: right;
    }

    .ro-btn-container {
        justify-content: flex-end;
        margin-top: 2rem;
    }
}

/* ==========================================================================
   Footer Section
   ========================================================================== */
.footer-section {
    position: relative;
    width: 100%;
    background-color: #f4f4f0;
    padding: 10vh 0 5vh 0;
    color: #1e1e1e;
}

.footer-inner {
    margin-left: 2.5vw;
    width: 95vw;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    box-sizing: border-box;
    position: relative;
    z-index: 2;
}

/* Row 1 */
.f-r1-c1 {
    grid-column: 1 / 2;
}

.f-r1-c2 {
    grid-column: 2 / 3;
}

.f-r1-c3 {
    grid-column: 3 / 4;
}

.f-tag {
    font-family: var(--font-corporate);
    font-weight: 700;
    font-size: 0.8rem;
    align-self: end;
    padding-bottom: 1rem;
}

.f-label {
    font-family: var(--font-corporate);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #1e1e1e;
    align-self: end;
    padding-bottom: 0.5rem;
    padding-left: 1.5rem;
}

/* Row 2 */
.f-r2-c1 {
    grid-column: 1 / 2;
}

.f-r2-c2 {
    grid-column: 2 / 3;
}

.f-r2-c3 {
    grid-column: 3 / 4;
}

.f-r2-c4 {
    grid-column: 4 / 5;
}

.f-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1rem, 2.5vw, 2rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -1px;
    align-self: start;
}

.f-input-wrapper {
    background-color: #ffffff;
    height: 3rem;
    display: flex;
    align-items: center;
}

.f-r2-c2 {
    border-right: 1px solid rgba(0, 0, 0, 0.05);
    /* Faint separator */
}

.f-input-wrapper input {
    width: 100%;
    height: 100%;
    min-width: 0;
    background: transparent;
    border: none;
    font-family: var(--font-corporate);
    font-size: 1rem;
    color: #1e1e1e;
    outline: none;
    padding: 0 1.5rem;
}

.f-input-wrapper input::placeholder {
    color: #999;
}

.f-btn-wrapper {
    height: 3rem;
    /* Match input height perfectly */
}

.f-submit-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    padding: 0 1.5rem;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.f-submit-btn:hover {
    background-color: #000;
}

.f-btn-icon svg {
    transition: transform 0.3s ease;
}

.f-submit-btn:hover .f-btn-icon svg {
    transform: translateX(5px);
}

.f-submit-btn.success {
    background-color: #ccff00;
    color: #000;
}

.f-submit-btn.success .f-btn-icon svg {
    stroke: #000;
    transform: rotate(90deg);
}

/* Row 3 */
.f-r3-c1 {
    grid-column: 1 / 2;
    margin-top: 1rem;
}

.f-r3-c23 {
    grid-column: 2 / 4;
    margin-top: 1rem;
}

.f-desc {
    font-family: var(--font-corporate);
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

.f-custom-checkbox {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    gap: 1rem;
}

.f-custom-checkbox input {
    display: none;
}

.f-checkmark {
    width: 15px;
    height: 15px;
    background-color: #333;
    display: inline-block;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
}

.f-custom-checkbox input:checked+.f-checkmark::after {
    content: '';
    position: absolute;
    left: 4px;
    top: 1px;
    width: 4px;
    height: 8px;
    border: solid #ccff00;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.f-cb-text {
    font-family: monospace;
    font-size: 0.6rem;
    color: #666;
    text-transform: uppercase;
    line-height: 1.4;
    max-width: 80%;
}

/* Row 5 */
.f-r5-c1 {
    grid-column: 1 / 2;
    margin-top: 20vh;
}

.f-r5-c2 {
    grid-column: 2 / 3;
    margin-top: 20vh;
    padding-left: 1rem;
}

.f-r5-c3 {
    grid-column: 3 / 4;
    margin-top: 18vh;
}

.f-r5-c4 {
    grid-column: 4 / 5;
    margin-top: 16.5vh;
    display: flex;
    justify-content: flex-end;
}

.back-to-top-btn {
    font-family: var(--font-corporate);
    font-size: 0.8rem;
    font-weight: 800;
    color: #1e1e1e;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    align-self: flex-start;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 3rem;

}

.back-to-top-btn:hover {
    color: #ccff00;
}

.f-logo-text {
    font-family: 'Anton', sans-serif;
    font-size: 2rem;
    letter-spacing: 1px;
}

.f-address {
    font-family: monospace;
    font-size: 0.8rem;
    color: #666;
    text-transform: uppercase;
    line-height: 1.5;
}

.f-phone {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 900;
    margin: 0;
}

.f-email-link {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    font-weight: 900;
    color: #000;
    text-decoration: none;
    background-color: #ccff00;
    display: inline-block;
    padding: 0.2rem 0.5rem;
    align-self: flex-start;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.f-email-link:hover {
    background-color: #0b0b0b;
    color: #ccff00;
}

/* Responsive Footer */
@media (max-width: 1024px) {

    /* Explicitly place each element on a new row to reorder the layout without changing HTML */
    .f-r1-c1 {
        grid-column: 1 / 5;
        grid-row: 1;
    }

    /* Tag */
    .f-r2-c1 {
        grid-column: 1 / 5;
        grid-row: 2;
        margin-top: 0.5rem;
    }

    /* Title */
    .f-r3-c1 {
        grid-column: 1 / 5;
        grid-row: 3;
        margin-bottom: 3rem;
    }

    /* Desc */

    .f-r1-c2 {
        grid-column: 1 / 5;
        grid-row: 4;
    }

    /* Name Label */
    .f-r2-c2 {
        grid-column: 1 / 5;
        grid-row: 5;
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    /* Name Input */

    .f-r1-c3 {
        grid-column: 1 / 5;
        grid-row: 6;
        margin-top: 2rem;
    }

    /* Email Label */
    .f-r2-c3 {
        grid-column: 1 / 5;
        grid-row: 7;
    }

    /* Email Input */

    .f-r3-c23 {
        grid-column: 1 / 5;
        grid-row: 8;
        margin-top: 2rem;
    }

    /* Checkbox */

    .f-r2-c4 {
        grid-column: 1 / 5;
        grid-row: 9;
        margin-top: 2rem;
    }

    /* Button */

    /* Bottom Contact Section */
    .f-r5-c1 {
        grid-column: 1 / 3;
        grid-row: 10;
        margin-top: 4rem;
        align-self: start;
    }

    /* Logo */
    .f-r5-c2 {
        grid-column: 3 / 5;
        grid-row: 10;
        margin-top: 4rem;
        text-align: right;
        justify-self: end;
    }

    /* Contact */
    .f-r5-c3 {
        grid-column: 1 / 4;
        grid-row: 11;
        margin-top: 2rem;
    }

    /* Back to Top */
    .f-r5-c4 {
        display: none;
    }

    .back-to-top-btn {
        display: none;
    }

    .contact-form-grid {
        grid-template-columns: 1fr !important;
        gap: 4rem !important;
    }
}

/* ==========================================================================
   Huge Glitch Text Section
   ========================================================================== */
.huge-text-section {
    width: 100%;
    background-color: #f4f4f0;
    padding: 25px 0;
    margin-bottom: -40px;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.huge-text-inner {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.ascii-art-container {
    font-family: monospace;
    font-size: clamp(3px, 1.2vw, 20px);
    line-height: 1;
    color: #1e1e1e;
    white-space: pre;
    cursor: crosshair;
    user-select: none;
    font-weight: bold;
    text-align: center;
}

.tiny-char {
    display: inline-block;
    transition: color 0.1s, font-weight 0.1s;
    width: 1ch;
}

.tiny-char.hover-glow {
    color: #ccff00;
    font-weight: 900;
}

/* ==========================================================================
   Sub Footer Section
   ========================================================================== */
.sub-footer-section {
    position: relative;
    width: 100%;
    background-color: #0b0b0b;
    padding: 1.5rem 0;
    color: #888888;
    z-index: 2;
}


.sub-footer-inner {
    margin-left: 2.5vw;
    width: 95vw;
    box-sizing: border-box;
    position: relative;
    display: flex;
    flex-direction: column;
}

/* Top Row */
.sf-row-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
}

.sf-logo-large {
    font-family: "Anton", sans-serif;
    font-size: 4vw;
    color: #ffffff;
    line-height: 1;
}

.sf-nav {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.sf-nav-link {
    font-family: var(--font-corporate);
    font-size: 1rem;
    font-weight: 800;
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    position: relative;
}

.sf-nav-link::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: #ffffff;
    transition: transform 0.3s ease;
    transform-origin: bottom right;
}

.sf-nav-link:hover::after {
    transform: scaleX(0);
    transform-origin: bottom left;
}

/* Bottom Row */
.sf-row-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sf-col-left {
    display: flex;
    gap: 2rem;
}

.sf-link {
    font-family: var(--font-corporate);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #888888;
    text-decoration: none;
    transition: color 0.3s ease;
}

.sf-link:hover {
    color: #ffffff;
}

.sf-col-center {
    display: flex;
    justify-content: center;
}

.sf-framer {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-corporate);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #888888;
}

.sf-col-right {
    display: flex;
    justify-content: flex-end;
}

.sf-created-by {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: var(--font-corporate);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #888888;
}

.sf-created-by img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
    filter: grayscale(100%);
}

.sf-creator-name {
    color: #ffffff;
}

/* Mobile Sub Footer */
@media (max-width: 1024px) {
    .sub-footer-section {
        padding: 1rem 0;
    }

    .sf-row-top {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0.5rem;
        padding-bottom: 1rem;
        margin-bottom: 1rem;
    }

    .sf-logo-large {
        font-size: 1.8rem;
        text-align: left;
    }

    .sf-nav {
        flex-wrap: wrap;
        justify-content: flex-end;
        gap: 0.8rem;
    }

    .sf-nav-link {
        font-size: 0.55rem;
    }

    .sf-row-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0.5rem;
    }

    .sf-col-left {
        flex-direction: row;
        align-items: center;
        gap: 0.8rem;
    }

    .sf-link,
    .sf-framer,
    .sf-created-by {
        font-size: 0.45rem;
    }

    .sf-created-by img {
        width: 16px;
        height: 16px;
        gap: 0.5rem;
    }
}

/* Page Hero Rolling Text Container */
.page-hero-section {
    width: 100vw;
    overflow: hidden;
}

.rolling-text-container {
    width: 100vw;
    overflow: hidden;
    position: relative;
    white-space: nowrap;
    display: flex;
    align-items: center;
}

.rolling-text-track {
    display: inline-flex;
    white-space: nowrap;
    animation: rollTextLeft 20s linear infinite;
    align-items: center;
    padding-right: 2rem;
}

.rolling-text {
    font-family: "Anton", sans-serif;
    font-size: clamp(4rem, 10vw, 12rem);
    color: #1e1e1e;
    text-transform: uppercase;
    line-height: 1;
    margin-right: 2rem;
}

.rolling-text-separator {
    font-family: "Anton", sans-serif;
    font-size: clamp(4rem, 10vw, 10rem);
    color: #ccff00;
    margin-right: 2rem;
}

@keyframes rollTextLeft {
    0% {
        transform: translateX(0);
    }

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

.wcu-dynamic-text {
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}


.wcu-dynamic-text {
    align-items: center;
}

.sf-col-left,
.sf-col-center,
.sf-col-right {
    flex: 1;
}

/* ==========================================================================
   Page Transitions
   ========================================================================== */
.page-transition-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    pointer-events: none;
    overflow: hidden;
}

.transition-panel {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translateY(100%);
    will-change: transform;
    transition: transform 0.4s cubic-bezier(0.85, 0, 0.15, 1);
    background-color: #ccff00;
}

.page-transition-overlay.is-instantly-covered .transition-panel {
    transform: translateY(0%);
    transition: none;
}

.page-transition-overlay.is-covering .transition-panel {
    transform: translateY(0%);
}

.page-transition-overlay.is-revealing .transition-panel {
    transform: translateY(-100%);
}

/* ==========================================================================
   Full Screen Menu
   ========================================================================== */
.fs-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #f4f4f0;
    z-index: 10000;
    display: none;
    overflow-y: auto;
    overflow-x: hidden;
    color: #0b0b0b;
}

.fs-menu.is-active {
    display: block;
}

/* Background grid lines */
.fs-menu-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    min-height: 100vh;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    pointer-events: none;
    z-index: 0;
}

.fs-menu-bg-line {
    border-right: 1px solid rgba(0, 0, 0, 0.05);
}

.fs-menu-bg-line:first-child {
    border-left: 1px solid rgba(0, 0, 0, 0.05);
}

/* Content Layout */
.fs-menu-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    min-height: 100vh;
    width: 100vw;
}

/* Left Featured Card */
.fs-menu-left {
    grid-column: 1 / 2;
    padding: 3rem 1.5rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.fs-menu-card-wrapper {
    display: flex;
    height: calc(90vh);
    border: 0px solid rgba(0, 0, 0, 0.1);
    background-color: #0b0b0b;
}

.fs-menu-side-text {
    width: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1rem 0;
    align-items: center;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.fs-menu-side-text span {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-family: monospace;
    font-size: 0.5rem;
    color: #888;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.fs-menu-card {
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
}

.fs-menu-card-img {
    width: 100%;
    height: 50%;
    object-fit: cover;
    opacity: 0.8;
}

.fs-menu-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    gap: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.fs-menu-stat-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1.5rem;
}

.fs-menu-stat-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.fs-menu-stat {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.fs-menu-stat h4 {
    font-family: 'Anton', sans-serif;
    font-size: 2rem;
    margin: 0;
    color: #fff;
    line-height: 1;
}

.fs-menu-stat p {
    font-family: monospace;
    font-size: 0.5rem;
    color: #888;
    margin: 0;
    text-transform: uppercase;
}

.fs-menu-bottom-text {
    margin-top: 2rem;
}

.fs-menu-card-tag {
    font-family: monospace;
    font-size: 0.6rem;
    color: #888;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.fs-menu-card-title {
    font-family: 'Anton', sans-serif;
    font-size: 1.5rem;
    color: #0b0b0b;
    line-height: 1.2;
}

/* Empty Col */
.fs-menu-col-2 {
    grid-column: 2 / 3;
}

/* Right Content */
.fs-menu-right {
    grid-column: 3 / 5;
    padding: 0rem 2rem 3rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.fs-menu-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 4rem;
}

.fs-menu-link {
    font-family: var(--font-corporate);
    font-weight: 800;
    font-size: clamp(3rem, 3vw, 5rem);
    line-height: 1;
    color: #0b0b0b;
    text-decoration: none;
    text-transform: uppercase;
    display: inline-block;
    position: relative;
    overflow: hidden;
    padding: 0rem 0;
    letter-spacing: -2px;
}

.fs-menu-link span {
    display: inline-block;
    transition: transform 0.4s cubic-bezier(0.76, 0, 0.24, 1);
}

.fs-menu-link::after {
    content: attr(data-text);
    position: absolute;
    top: 100%;
    left: 0;
    transition: transform 0.4s cubic-bezier(0.76, 0, 0.24, 1);
}

.fs-menu-link:hover span {
    transform: translateY(-100%);
}

.fs-menu-link:hover::after {
    transform: translateY(-100%);
}

.fs-menu-contact {
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
}

.fs-menu-phone {
    font-family: monospace;
    font-size: 0.9rem;
    font-weight: 700;
    color: #0b0b0b;
    text-decoration: underline;
}

.fs-menu-email {
    font-family: 'Anton', sans-serif;
    font-size: 1.8rem;
    background-color: #ccff00;
    color: #0b0b0b;
    padding: 0.2rem 0.5rem;
    text-decoration: none;
    letter-spacing: 1px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.fs-menu-email:hover {
    background-color: #0b0b0b;
    color: #ccff00;
}

.fs-menu-socials {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 3rem;
    max-width: 400px;
}

.fs-menu-socials-title {
    font-family: monospace;
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 0.5rem;
    grid-column: 1 / 3;
}

.fs-menu-social-link {
    font-family: monospace;
    font-size: 0.7rem;
    font-weight: 700;
    color: #0b0b0b;
    text-decoration: none;
    display: flex;
    gap: 0.8rem;
    transition: color 0.3s ease;
}

.fs-menu-social-link span {
    color: #888;
    font-weight: 400;
}

.fs-menu-social-link:hover {
    color: #888;
}

/* Close Button */
.fs-menu-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background-color: #0b0b0b;
    color: #fff;
    font-family: var(--font-corporate);
    font-size: 0.8rem;
    font-weight: 700;
    border: none;
    padding: 0.8rem 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 10;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.fs-menu-close:hover {
    background-color: #ccff00;
    color: #0b0b0b;
}


/* 4-Column Wipe Transition */
.menu-wipe-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 10001;
    pointer-events: none;
    display: flex;
}

.menu-wipe-panel {
    flex: 1;
    height: 100%;
    background-color: #ccff00;
    transform: translateY(100%);
    will-change: transform;
    box-shadow: 1px 0 0 #ccff00, -1px 0 0 #ccff00;
}

/* Responsive */
@media (max-width: 1024px) {
    .fs-menu-content {
        grid-template-columns: 1fr;
    }

    .fs-menu-bg {
        grid-template-columns: repeat(2, 1fr);
    }

    .fs-menu-left {
        display: none;
    }

    .fs-menu-right {
        grid-column: 1 / -1;
        padding: 2rem 2rem 3rem 2rem;
    }

    .fs-menu-link {
        font-size: clamp(3rem, 12vw, 5rem);
    }
}

/* ==========================================================================
   Work Endless Gallery
   ========================================================================== */
.work-gallery-viewport {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background-color: #ffffff;
    z-index: 1;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
}

.work-gallery-viewport:active {
    cursor: grabbing;
}

.gallery-bg-text-container {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.gallery-bg-text {
    font-family: var(--font-corporate);
    font-size: clamp(1rem, 3vw, 3rem);
    font-weight: 900;
    color: #ccff00;
    white-space: nowrap;
    letter-spacing: -0.02em;
}

.gallery-bg-subtext {
    font-family: var(--font-corporate);
    font-size: clamp(0.7rem, 1vw, 1rem);
    font-weight: 600;
    color: #1e1e1e;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.work-gallery-canvas {
    position: absolute;
    top: 0;
    left: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    will-change: transform;
    z-index: 10;
}

.gallery-block {
    position: relative;
    /* Extra width and height to prevent vertical overlap of tall images */
    width: 200vw;
    height: 250vh;
}

/* Mobile specific: make it much wider so images are larger relative to screen */
@media (max-width: 768px) {
    .gallery-block {
        width: 350vw;
        height: 350vh;
    }
}

.g-item {
    position: absolute;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), filter 0.4s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.g-item:hover {
    transform: scale(1.05) !important;
    z-index: 100;
}

.g-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    /* Don't crop */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    pointer-events: none;
    /* Removed border-radius */
}


/* Re-generating safe, non-overlapping staggered positions */
.g-item.i1 {
    top: 2%;
    left: 2%;
    width: 12%;
}

.g-item.i2 {
    top: 6%;
    left: 22%;
    width: 14%;
}

.g-item.i3 {
    top: 1%;
    left: 42%;
    width: 13%;
}

.g-item.i4 {
    top: 8%;
    left: 61%;
    width: 15%;
}

.g-item.i5 {
    top: 3%;
    left: 83%;
    width: 12%;
}

.g-item.i6 {
    top: 28%;
    left: 4%;
    width: 14%;
}

.g-item.i7 {
    top: 26%;
    left: 25%;
    width: 12%;
}

.g-item.i8 {
    top: 30%;
    left: 44%;
    width: 14%;
}

.g-item.i9 {
    top: 27%;
    left: 64%;
    width: 13%;
}

.g-item.i10 {
    top: 29%;
    left: 81%;
    width: 15%;
}

.g-item.i11 {
    top: 52%;
    left: 1%;
    width: 13%;
}

.g-item.i12 {
    top: 56%;
    left: 21%;
    width: 14%;
}

.g-item.i13 {
    top: 51%;
    left: 45%;
    width: 15%;
}

.g-item.i14 {
    top: 55%;
    left: 62%;
    width: 12%;
}

.g-item.i15 {
    top: 52%;
    left: 84%;
    width: 14%;
}

.g-item.i16 {
    top: 78%;
    left: 3%;
    width: 15%;
}

.g-item.i17 {
    top: 76%;
    left: 24%;
    width: 13%;
}

.g-item.i18 {
    top: 80%;
    left: 41%;
    width: 14%;
}

.g-item.i19 {
    top: 77%;
    left: 65%;
    width: 12%;
}

.g-item.i20 {
    top: 81%;
    left: 82%;
    width: 14%;
}

/* ==========================================================================
   Cookie Banner
   ========================================================================== */
.cookie-banner {
    position: fixed;
    bottom: 30px;
    right: 30px;
    transform: translateY(200%);
    background-color: #f4f4f0;
    padding: 20px 25px;
    border-radius: 6px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    z-index: 99999;
    font-family: 'Montserrat', sans-serif;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    width: auto;
    max-width: 550px;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cookie-icon {
    flex-shrink: 0;
    margin-top: 0;
}

.cookie-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    letter-spacing: -0.01em;
    line-height: 1.4;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    width: auto;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 800;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.cookie-btn.accept {
    background-color: #ccff00;
    border: 1px solid #ccff00;
    color: #000;
}

.cookie-btn.accept:hover {
    background-color: #b9e507;
    border-color: #ccff00;
    color: #000;
}

.cookie-btn.reject {
    background-color: #f4f4f0;
    border: 1px solid #ccff00;
    color: #1a1a1a;
}

.cookie-btn.reject:hover {
    background-color: #ffffff;
    border-color: #ccff00;
    color: #000;
}

/* =========================================================================
   Mobile Sticky Process Cards
   ========================================================================== */
@media (max-width: 768px) {
    .process-heading-container {
        position: sticky !important;
        top: 80px;
        /* Below the header */
        z-index: 5;
        background-color: #f4f4f0;
        padding-top: 1rem;
        padding-bottom: 1rem;
        margin-top: -1rem;
    }

    .process-cards-container {
        display: flex !important;
        flex-direction: column;
        gap: 60vh !important;
        /* Huge gap allows each card to rise up individually */
        padding-bottom: 20vh !important;
    }

    .process-card {
        position: sticky !important;
        height: max-content;
        min-height: 250px;
        border-radius: 10px 10px 0 0;
        border-top: 1px solid rgba(0, 0, 0, 0.1) !important;
    }

    .process-card:nth-child(1) {
        top: 160px;
        z-index: 10;
    }

    .process-card:nth-child(2) {
        top: 180px;
        z-index: 11;
    }

    .process-card:nth-child(3) {
        top: 200px;
        z-index: 12;
    }

    .process-card:nth-child(4) {
        top: 220px;
        z-index: 13;
    }
}


@media (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        border-radius: 12px;
        text-align: center;
        bottom: 20px;
        left: 2.5vw;
        right: 2.5vw;
        width: 95vw;
        max-width: none;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================================================
   Cal.com Background Blur Effect
   ========================================================================== */
main,
header.sticky-header,
.fs-menu {
    transition: filter 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

body.cal-modal-open main,
body.cal-modal-open header.sticky-header,
body.cal-modal-open .fs-menu {
    filter: blur(15px) brightness(0.6) !important;
    pointer-events: none;
    user-select: none;
}

/* ==========================================================================
   New Contact Grid
   ========================================================================== */
.no-pop:hover {
    transform: none !important;
}

.cng-email-hover {
    transition: background-color 0.3s ease, color 0.3s ease !important;
}

.cng-email-hover:hover {
    background-color: #0b0b0b !important;
    color: #ffffff !important;
}

@media (max-width: 900px) {
    .minimal-contact-section {
        padding-top: 10vh !important;
    }

    .desktop-hero-text {
        display: none !important;
    }

    .mobile-hero-text {
        display: block !important;
    }

    .contact-new-grid {
        grid-template-columns: 1fr !important;
    }

    .hwdi-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 0 !important;
    }

    .hwdi-cards>div {
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .hwdi-cards>div:nth-child(3),
    .hwdi-cards>div:nth-child(4) {
        border-bottom: none;
    }

    .hwdi-cards>div:nth-child(3) {
        border-left: 1px solid rgba(255, 255, 255, 0.2) !important;
    }

    .cng-col {
        border-right: none !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        padding: 1.5rem 0 !important;
        min-height: auto !important;
    }

    .cng-col:last-child {
        border-bottom: none;
    }

    .cng-reach-out,
    .cng-col-3 {
        display: none !important;
    }

    .cng-phone-block {
        margin-top: 0 !important;
    }
}

\n
/* Mobile gallery positions from editor */
@media (max-width: 768px) {
    .gallery-block {
        width: 260vw;
        height: 180vh;
    }

    .g-item.i1 {
        left: 1.18%;
        top: 5.1%;
    }

    .g-item.i4 {
        left: 48.12%;
        top: 11.7%;
    }

    .g-item.i5 {
        left: 68.36%;
        top: 5.67%;
    }

    .g-item.i6 {
        left: 1.45%;
        top: 16.5%;
    }

    .g-item.i7 {
        left: 17.53%;
        top: 23%;
    }

    .g-item.i8 {
        left: 36.31%;
        top: 27.18%;
    }

    .g-item.i9 {
        left: 59.74%;
        top: 28.85%;
    }

    .g-item.i10 {
        left: 73.34%;
        top: 13.17%;
    }

    .g-item.i11 {
        left: 1.96%;
        top: 32.82%;
    }

    .g-item.i12 {
        left: 17.64%;
        top: 35.8%;
    }

    .g-item.i13 {
        left: 37.58%;
        top: 38.51%;
    }

    .g-item.i14 {
        left: 57.71%;
        top: 44.17%;
    }

    .g-item.i16 {
        left: 2.79%;
        top: 51.88%;
    }

    .g-item.i17 {
        left: 23.14%;
        top: 54.21%;
    }

    .g-item.i18 {
        left: 43.89%;
        top: 56.25%;
    }

    /* Packing the un-edited images to fill remaining gaps */
    .g-item.i2 {
        left: 20%;
        top: 45%;
    }

    .g-item.i3 {
        left: 35%;
        top: 12%;
    }

    .g-item.i15 {
        left: 65%;
        top: 55%;
    }

    .g-item.i19 {
        left: 10%;
        top: 45%;
    }

    .g-item.i20 {
        left: 78%;
        top: 35%;
    }
}