
/* Tuny Custom approved homepage design */
body.tuny-home-design-active {
    margin: 0;
    background: #fff;
}
body.tuny-home-design-active .entry-header,
body.tuny-home-design-active .page-header,
body.tuny-home-design-active .site-main > .entry-header,
body.tuny-home-design-active .elementor-location-header,
body.tuny-home-design-active #masthead,
body.tuny-home-design-active .site-header,
body.tuny-home-design-active .entry-footer {
    display: none !important;
}
body.tuny-home-design-active .site,
body.tuny-home-design-active .site-content,
body.tuny-home-design-active .content-area,
body.tuny-home-design-active .site-main,
body.tuny-home-design-active article,
body.tuny-home-design-active .entry-content {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
}
.tuny-home-redesign,
.tuny-home-redesign * {
    box-sizing: border-box;
}
.tuny-home-redesign {
    --red: #ed1117;
    --black: #050505;
    width: 100%;
    font-family: Arial, Helvetica, sans-serif;
    color: #fff;
    background: #fff;
}
.tuny-header {
    background: var(--black);
    min-height: 110px;
    display: flex;
    align-items: center;
}
.tuny-header-inner {
    width: min(1450px, 100%);
    margin: 0 auto;
    padding: 0 28px;
    display: grid;
    grid-template-columns: 320px 1fr auto;
    align-items: center;
    gap: 30px;
}
.tuny-logo img {
    display: block;
    width: 285px;
    max-width: 100%;
    height: 92px;
    object-fit: contain;
    object-position: left center;
}
.tuny-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(24px, 3vw, 58px);
}
.tuny-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    padding: 31px 0 26px;
    border-bottom: 4px solid transparent;
}
.tuny-nav a:hover,
.tuny-nav a:focus,
.tuny-nav a.is-active {
    color: var(--red);
    border-bottom-color: var(--red);
}
.tuny-contact-button {
    background: var(--red);
    color: #fff !important;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    padding: 18px 31px;
    border-radius: 4px;
    white-space: nowrap;
}
.tuny-contact-button:hover,
.tuny-contact-button:focus {
    filter: brightness(.9);
}
.tuny-menu-toggle {
    display: none;
}
.tuny-hero {
    position: relative;
    min-height: 480px;
    background-image: var(--tuny-hero-image);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center right;
    overflow: hidden;
}
.tuny-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,.98) 0%, rgba(0,0,0,.91) 28%, rgba(0,0,0,.42) 58%, rgba(0,0,0,.05) 100%);
}
.tuny-hero-content {
    position: relative;
    z-index: 1;
    width: min(1450px, 100%);
    margin: 0 auto;
    padding: 78px 64px 58px;
}
.tuny-hero h1 {
    max-width: 650px;
    margin: 0;
    color: #fff;
    font-size: clamp(48px, 5vw, 68px);
    line-height: 1.05;
    letter-spacing: -1.5px;
    font-weight: 800;
}
.tuny-red-line {
    display: block;
    width: 92px;
    height: 4px;
    margin: 28px 0 24px;
    background: var(--red);
}
.tuny-hero p {
    max-width: 565px;
    margin: 0;
    color: #fff;
    font-size: 20px;
    line-height: 1.48;
    font-weight: 400;
}
.tuny-services {
    width: min(1370px, calc(100% - 50px));
    margin: 26px auto 52px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 25px;
}
.tuny-service-card {
    display: block;
    overflow: hidden;
    border: 1px solid #d8d8d8;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 2px 7px rgba(0,0,0,.12);
    color: inherit;
    text-decoration: none;
}
.tuny-service-card img {
    display: block;
    width: 100%;
    height: 310px;
    object-fit: cover;
}
.tuny-service-label {
    min-height: 105px;
    padding: 18px 34px;
    background: linear-gradient(90deg, #ef171b, #e80008);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}
.tuny-service-label strong {
    color: #fff;
    font-size: 36px;
    line-height: 1;
    font-weight: 700;
}
.tuny-service-icon {
    width: 58px;
    height: 58px;
    border: 2px solid #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    font-weight: 400;
}
.tuny-shirt-icon {
    font-size: 0;
}
.tuny-shirt-icon::before {
    content: "T";
    font-size: 27px;
    font-weight: 700;
}
@media (max-width: 1050px) {
    .tuny-header-inner {
        grid-template-columns: 250px 1fr auto;
        gap: 16px;
        padding: 0 18px;
    }
    .tuny-logo img {
        width: 235px;
    }
    .tuny-nav {
        gap: 20px;
    }
    .tuny-nav a {
        font-size: 15px;
    }
    .tuny-contact-button {
        padding: 15px 20px;
        font-size: 15px;
    }
}
@media (max-width: 780px) {
    .tuny-header {
        min-height: 84px;
    }
    .tuny-header-inner {
        grid-template-columns: 1fr auto;
        position: relative;
    }
    .tuny-logo img {
        width: 220px;
        height: 70px;
    }
    .tuny-menu-toggle {
        display: inline-flex;
        width: 46px;
        height: 42px;
        padding: 9px;
        flex-direction: column;
        justify-content: space-between;
        border: 1px solid rgba(255,255,255,.35);
        border-radius: 4px;
        background: transparent;
    }
    .tuny-menu-toggle span:not(.screen-reader-text) {
        display: block;
        height: 2px;
        background: #fff;
    }
    .tuny-nav {
        display: none;
        position: absolute;
        z-index: 30;
        top: 84px;
        left: 0;
        right: 0;
        background: #080808;
        padding: 10px 22px 18px;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }
    .tuny-nav.is-open {
        display: flex;
    }
    .tuny-nav a {
        padding: 15px 3px;
        border-bottom-width: 1px;
        border-bottom-color: rgba(255,255,255,.12);
    }
    .tuny-contact-button {
        display: none;
    }
    .tuny-hero {
        min-height: 500px;
        background-position: 58% center;
    }
    .tuny-hero-overlay {
        background: rgba(0,0,0,.68);
    }
    .tuny-hero-content {
        padding: 65px 28px 50px;
    }
    .tuny-hero h1 {
        font-size: clamp(42px, 11vw, 58px);
    }
    .tuny-hero p {
        font-size: 18px;
    }
    .tuny-services {
        width: calc(100% - 28px);
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .tuny-service-card img {
        height: 255px;
    }
    .tuny-service-label {
        min-height: 88px;
    }
    .tuny-service-label strong {
        font-size: 30px;
    }
}
