.elementor-21 .elementor-element.elementor-element-2d401f5{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-21 .elementor-element.elementor-element-818e84d{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-21 .elementor-element.elementor-element-38ddfac{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-21 .elementor-element.elementor-element-a3db1a0{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-21 .elementor-element.elementor-element-07c1bd2{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:50px;--padding-left:0px;--padding-right:0px;}.elementor-21 .elementor-element.elementor-element-07c1bd2:not(.elementor-motion-effects-element-type-background), .elementor-21 .elementor-element.elementor-element-07c1bd2 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:var( --e-global-color-secondary );}/* Start custom CSS *//* =========================================
   THE SOCIAL HOUSE — WORK HERO
========================================= */

.tsh-work-hero {
    --tsh-cream: #fffcf5;
    --tsh-black: #000000;
    --tsh-white: #ffffff;
    --tsh-grey: #686868;
    --tsh-line: rgba(0, 0, 0, 0.18);

    position: relative;
    overflow: hidden;

    width: 100%;

    background-color: var(--tsh-cream);
    color: var(--tsh-black);
}

.tsh-work-hero,
.tsh-work-hero * {
    box-sizing: border-box;
}

/* =========================================
   MAIN LAYOUT
========================================= */

.tsh-work-hero__inner {
    width: min(calc(100% - 64px), 1320px);
    min-height: 690px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: minmax(420px, 0.9fr) minmax(520px, 1.1fr);
    align-items: center;
    gap: clamp(70px, 8vw, 140px);

    padding-top: 88px;
    padding-bottom: 82px;
}

/* =========================================
   LEFT CONTENT
========================================= */

.tsh-work-hero__content {
    position: relative;
    z-index: 4;

    max-width: 680px;
}

.tsh-work-hero__eyebrow {
    display: block;
    margin-bottom: 28px;

    color: var(--tsh-black) !important;

    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.tsh-work-hero__title {
    max-width: 760px;
    margin: 0;

    color: var(--tsh-black) !important;

    font-size: clamp(54px, 5.9vw, 88px);
    font-weight: 700;
    line-height: 0.94;
    letter-spacing: -0.07em;
}

.tsh-work-hero__text {
    max-width: 600px;
    margin: 30px 0 0;

    color: var(--tsh-grey) !important;

    font-size: 17px;
    font-weight: 400;
    line-height: 1.65;
}

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

.tsh-work-hero__button,
.tsh-work-hero__button:visited {
    position: relative;
    isolation: isolate;
    overflow: hidden;

    min-width: 165px;
    min-height: 52px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;

    margin-top: 34px;
    padding: 0 22px;

    border: 1px solid var(--tsh-black);

    background-color: var(--tsh-black);
    color: var(--tsh-white) !important;

    font-size: 13px;
    font-weight: 700;
    line-height: 1;

    text-decoration: none !important;

    box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.2);

    transition:
        color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.tsh-work-hero__button::before {
    content: "";

    position: absolute;
    inset: 0;
    z-index: -1;

    background-color: var(--tsh-white);

    transform: translateX(-101%);

    transition: transform 0.38s cubic-bezier(0.77, 0, 0.18, 1);
}

.tsh-work-hero__button span {
    display: inline-block;

    font-size: 18px;

    transition: transform 0.3s ease;
}

.tsh-work-hero__button:hover {
    color: var(--tsh-black) !important;

    transform: translate(3px, 3px);

    box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.18);
}

.tsh-work-hero__button:hover::before {
    transform: translateX(0);
}

.tsh-work-hero__button:hover span {
    transform: translateX(5px);
}

/* =========================================
   VISUAL AREA
========================================= */

.tsh-work-hero__visual {
    position: relative;
    z-index: 2;

    width: 100%;
    min-height: 545px;
}

/* =========================================
   PROJECT CARDS
========================================= */

.tsh-work-card {
    position: absolute;
    overflow: hidden;
    z-index: 3;

    display: block;

    border: 1px solid rgba(0, 0, 0, 0.12);

    background-color: #dedbd4;
    color: var(--tsh-white);

    text-decoration: none !important;

    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.13);

    transition:
        transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.45s ease;
}

.tsh-work-card img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.tsh-work-card__overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.66) 0%,
            rgba(0, 0, 0, 0.08) 58%,
            rgba(0, 0, 0, 0) 100%
        );
}

.tsh-work-card__label {
    position: absolute;
    left: 20px;
    bottom: 20px;
    z-index: 2;

    max-width: calc(100% - 60px);

    color: var(--tsh-white) !important;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(20px, 2vw, 30px);
    font-weight: 400;
    line-height: 1;
}

.tsh-work-card__arrow {
    position: absolute;
    right: 18px;
    bottom: 18px;
    z-index: 2;

    color: var(--tsh-white);

    font-size: 22px;

    transition: transform 0.3s ease;
}

.tsh-work-card:hover {
    z-index: 8;

    transform: translateY(-8px) rotate(0deg);

    box-shadow: 0 28px 55px rgba(0, 0, 0, 0.2);
}

.tsh-work-card:hover img {
    transform: scale(1.055);
}

.tsh-work-card:hover .tsh-work-card__arrow {
    transform: translateX(5px);
}

/* =========================================
   CARD POSITIONS
========================================= */

.tsh-work-card--elounda {
    left: 0;
    top: 205px;

    width: 230px;
    height: 285px;

    transform: rotate(-1.5deg);
}

.tsh-work-card--potiraki {
    left: 155px;
    top: 20px;

    width: 285px;
    height: 340px;

    transform: rotate(1.2deg);
}

.tsh-work-card--bike {
    right: 0;
    top: 100px;

    width: 235px;
    height: 325px;

    transform: rotate(1.5deg);
}

.tsh-work-card--corner {
    right: 85px;
    bottom: 0;

    width: 205px;
    height: 245px;

    transform: rotate(-1deg);
}

/* =========================================
   BADGE
========================================= */

.tsh-work-hero__badge {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 9;

    width: 112px;
    height: 112px;

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

    border: 1px solid var(--tsh-black);
    border-radius: 50%;

    background-color: var(--tsh-cream);
    color: var(--tsh-black);

    text-align: center;

    transform: translate(-50%, -50%) rotate(-5deg);

    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.tsh-work-hero__badge span {
    margin-bottom: 7px;

    font-size: 7px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.tsh-work-hero__badge strong {
    font-size: 17px;
    font-weight: 700;
    line-height: 0.92;
}

/* =========================================
   GLOSSY SHAPE
========================================= */

.tsh-work-hero__shape {
    position: absolute;
    top: 10px;
    right: -230px;
    z-index: 1;

    width: 430px;
    max-width: none;
    height: auto;

    object-fit: contain;

    pointer-events: none;

    transform: rotate(-8deg);

    opacity: 0.96;
}

/* =========================================
   BOTTOM LINE
========================================= */

.tsh-work-hero__bottom {
    width: min(calc(100% - 64px), 1320px);
    margin: 0 auto;

    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 24px;

    padding-bottom: 42px;
}

.tsh-work-hero__bottom > span:first-child {
    color: var(--tsh-black);

    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.tsh-work-hero__bottom-line {
    display: block;

    width: 100%;
    height: 1px;

    background-color: var(--tsh-line);
}

/* =========================================
   LARGE TABLET
========================================= */

@media (max-width: 1180px) {

    .tsh-work-hero__inner {
        width: min(calc(100% - 48px), 1100px);

        grid-template-columns: minmax(380px, 0.9fr) minmax(460px, 1.1fr);
        gap: 55px;

        padding-top: 72px;
        padding-bottom: 72px;
    }

    .tsh-work-hero__title {
        font-size: clamp(50px, 6vw, 74px);
    }

    .tsh-work-hero__visual {
        min-height: 500px;
    }

    .tsh-work-card--elounda {
        width: 200px;
        height: 255px;
    }

    .tsh-work-card--potiraki {
        left: 135px;

        width: 250px;
        height: 315px;
    }

    .tsh-work-card--bike {
        width: 210px;
        height: 295px;
    }

    .tsh-work-card--corner {
        width: 185px;
        height: 225px;
    }

    .tsh-work-hero__shape {
        right: -260px;
    }

}

/* =========================================
   TABLET
========================================= */

@media (max-width: 960px) {

    .tsh-work-hero__inner {
        grid-template-columns: 1fr;
        gap: 55px;

        min-height: auto;

        padding-top: 64px;
    }

    .tsh-work-hero__content {
        max-width: 760px;
    }

    .tsh-work-hero__title br {
        display: none;
    }

    .tsh-work-hero__visual {
        width: min(100%, 680px);
        min-height: 560px;
        margin: 0 auto;
    }

    .tsh-work-card--elounda {
        left: 0;
        top: 210px;

        width: 235px;
        height: 290px;
    }

    .tsh-work-card--potiraki {
        left: 170px;
        top: 15px;

        width: 290px;
        height: 350px;
    }

    .tsh-work-card--bike {
        right: 0;
        top: 90px;

        width: 240px;
        height: 330px;
    }

    .tsh-work-card--corner {
        right: 80px;
        bottom: 0;

        width: 210px;
        height: 250px;
    }

    .tsh-work-hero__shape {
        right: -230px;
    }

    .tsh-work-hero__bottom {
        width: min(calc(100% - 48px), 1100px);
    }

}

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

@media (max-width: 767px) {

    .tsh-work-hero__inner {
        width: min(calc(100% - 36px), 700px);

        gap: 44px;

        padding-top: 52px;
        padding-bottom: 52px;
    }

    .tsh-work-hero__eyebrow {
        margin-bottom: 22px;

        font-size: 10px;
    }

    .tsh-work-hero__title {
        font-size: clamp(46px, 13.5vw, 66px);
    }

    .tsh-work-hero__text {
        margin-top: 24px;

        font-size: 15px;
    }

    .tsh-work-hero__visual {
        min-height: auto;

        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .tsh-work-card {
        position: relative;
        inset: auto;

        width: 100%;
        height: 260px;

        transform: none;
    }

    .tsh-work-card--potiraki,
    .tsh-work-card--corner {
        margin-top: 38px;
    }

    .tsh-work-card__label {
        font-size: 23px;
    }

    .tsh-work-hero__badge {
        left: 50%;
        top: 50%;

        width: 90px;
        height: 90px;
    }

    .tsh-work-hero__shape {
        display: none;
    }

    .tsh-work-hero__bottom {
        width: min(calc(100% - 36px), 700px);

        padding-bottom: 34px;
    }

}

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

@media (max-width: 480px) {

    .tsh-work-hero__inner {
        width: min(calc(100% - 28px), 460px);

        padding-top: 44px;
        padding-bottom: 44px;
    }

    .tsh-work-hero__title {
        font-size: clamp(40px, 12.5vw, 54px);
    }

    .tsh-work-hero__button {
        width: 100%;
    }

    .tsh-work-hero__visual {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .tsh-work-card,
    .tsh-work-card--potiraki,
    .tsh-work-card--corner {
        height: 265px;
        margin-top: 0;
    }

    .tsh-work-hero__badge {
        display: none;
    }

    .tsh-work-hero__bottom {
        width: min(calc(100% - 28px), 460px);
    }

}

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

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

    .tsh-work-card,
    .tsh-work-card img,
    .tsh-work-card__arrow,
    .tsh-work-hero__button,
    .tsh-work-hero__button::before,
    .tsh-work-hero__button span {
        transition: none;
    }

}




/* =========================================
   THE SOCIAL HOUSE — FEATURED PROJECTS
   FULL CARD VERSION
========================================= */

.tsh-work-projects {
    --tsh-cream: #fffcf5;
    --tsh-black: #000000;
    --tsh-white: #ffffff;
    --tsh-grey: #686868;
    --tsh-line: rgba(0, 0, 0, 0.18);

    position: relative;
    width: 100%;

    background-color: var(--tsh-cream);
    color: var(--tsh-black);
}

.tsh-work-projects,
.tsh-work-projects * {
    box-sizing: border-box;
}

/* =========================================
   INNER
========================================= */

.tsh-work-projects__inner {
    width: min(calc(100% - 64px), 1320px);
    margin: 0 auto;

    padding-top: 66px;
    padding-bottom: 82px;

    border-bottom: 1px solid var(--tsh-line);
}

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

.tsh-work-projects__header {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.55fr);
    align-items: end;
    gap: clamp(40px, 6vw, 90px);

    margin-bottom: 32px;
}

.tsh-work-projects__heading-wrap {
    max-width: 720px;
}

.tsh-work-projects__eyebrow {
    display: block;
    margin-bottom: 15px;

    color: var(--tsh-black) !important;

    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.tsh-work-projects__title {
    margin: 0;

    color: var(--tsh-black) !important;

    font-size: clamp(38px, 4vw, 60px);
    font-weight: 700;
    line-height: 0.96;
    letter-spacing: -0.065em;
}

.tsh-work-projects__intro {
    max-width: 370px;
    margin: 0;

    color: var(--tsh-grey) !important;

    font-size: 14px;
    font-weight: 400;
    line-height: 1.65;
}

/* =========================================
   GRID — 4 COLUMNS
========================================= */

.tsh-work-projects__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: stretch;
    gap: 18px;
}

/* =========================================
   FULL CARD
========================================= */

.tsh-project-card {
    min-width: 0;
    height: 100%;
}

.tsh-project-card__link,
.tsh-project-card__link:visited {
    height: 100%;

    display: flex;
    flex-direction: column;

    border: 1px solid var(--tsh-line);

    background-color: transparent;
    color: var(--tsh-black) !important;

    text-decoration: none !important;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

/* =========================================
   IMAGE AREA
========================================= */

.tsh-project-card__media {
    position: relative;
    overflow: hidden;

    width: calc(100% - 20px);
    margin: 10px 10px 0;

    aspect-ratio: 4 / 3;

    background-color: #ddd9d1;
}

.tsh-project-card__image {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.tsh-project-card__media::after {
    content: "";

    position: absolute;
    inset: 0;
    z-index: 1;

    background-color: rgba(0, 0, 0, 0.52);

    opacity: 0;

    transition: opacity 0.35s ease;
}

/* =========================================
   VIEW BUTTON
========================================= */

.tsh-project-card__view {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;

    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 11px 14px;

    border: 1px solid rgba(255, 255, 255, 0.9);

    background-color: var(--tsh-white);
    color: var(--tsh-black) !important;

    font-size: 9px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;

    opacity: 0;

    transform: translate(-50%, calc(-50% + 14px));

    transition:
        opacity 0.35s ease,
        transform 0.35s ease;
}

.tsh-project-card__view span {
    font-size: 14px;

    transition: transform 0.3s ease;
}

/* =========================================
   CONTENT INSIDE CARD
========================================= */

.tsh-project-card__content {
    min-height: 132px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;

    padding: 17px 16px 18px;
}

.tsh-project-card__title {
    margin: 0;

    color: var(--tsh-black) !important;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(20px, 1.65vw, 27px);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.035em;
}

.tsh-project-card__line {
    display: block;

    width: 38px;
    height: 1px;

    margin-top: 12px;

    background-color: var(--tsh-black);

    transition: width 0.35s ease;
}

.tsh-project-card__services {
    margin: 12px 0 0;

    color: var(--tsh-grey) !important;

    font-size: 9px;
    font-weight: 600;
    line-height: 1.55;
    letter-spacing: 0.045em;
    text-transform: uppercase;
}

/* =========================================
   HOVER
========================================= */

.tsh-project-card__link:hover {
    transform: translateY(-5px);

    border-color: rgba(0, 0, 0, 0.35);

    box-shadow: 0 18px 32px rgba(0, 0, 0, 0.1);
}

.tsh-project-card__link:hover .tsh-project-card__image {
    transform: scale(1.055);
}

.tsh-project-card__link:hover .tsh-project-card__media::after {
    opacity: 1;
}

.tsh-project-card__link:hover .tsh-project-card__view {
    opacity: 1;

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

.tsh-project-card__link:hover .tsh-project-card__view span {
    transform: translateX(4px);
}

.tsh-project-card__link:hover .tsh-project-card__line {
    width: 62px;
}

/* =========================================
   FOCUS
========================================= */

.tsh-project-card__link:focus-visible {
    outline: 2px solid var(--tsh-black);
    outline-offset: 5px;
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 1050px) {

    .tsh-work-projects__inner {
        width: min(calc(100% - 48px), 1050px);

        padding-top: 60px;
        padding-bottom: 72px;
    }

    .tsh-work-projects__header {
        margin-bottom: 28px;
    }

    .tsh-work-projects__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px;
    }

    .tsh-project-card__media {
        aspect-ratio: 16 / 10;
    }

    .tsh-project-card__content {
        min-height: 122px;
    }

    .tsh-project-card__title {
        font-size: clamp(24px, 3vw, 32px);
    }

    .tsh-project-card__services {
        font-size: 10px;
    }

}

/* =========================================
   SMALL TABLET
========================================= */

@media (max-width: 850px) {

    .tsh-work-projects__header {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .tsh-work-projects__intro {
        max-width: 560px;
    }

}

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

@media (max-width: 767px) {

    .tsh-work-projects__inner {
        width: min(calc(100% - 36px), 700px);

        padding-top: 52px;
        padding-bottom: 60px;
    }

    .tsh-work-projects__title {
        font-size: clamp(36px, 9.5vw, 50px);
    }

    .tsh-work-projects__intro {
        font-size: 14px;
    }

    .tsh-work-projects__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .tsh-project-card__media {
        aspect-ratio: 16 / 10;
    }

    .tsh-project-card__content {
        min-height: auto;

        padding: 18px 17px 20px;
    }

    .tsh-project-card__title {
        font-size: clamp(28px, 7.5vw, 38px);
    }

    .tsh-project-card__services {
        font-size: 10px;
    }

    .tsh-project-card__media::after {
        opacity: 0.12;
    }

    .tsh-project-card__view {
        left: auto;
        top: auto;
        right: 12px;
        bottom: 12px;

        opacity: 1;

        transform: none;
    }

}

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

@media (max-width: 480px) {

    .tsh-work-projects__inner {
        width: min(calc(100% - 28px), 460px);

        padding-top: 46px;
        padding-bottom: 52px;
    }

    .tsh-work-projects__eyebrow {
        font-size: 9px;
    }

    .tsh-project-card__media {
        width: calc(100% - 16px);
        margin: 8px 8px 0;

        aspect-ratio: 4 / 3;
    }

    .tsh-project-card__content {
        padding: 16px 14px 18px;
    }

    .tsh-project-card__title {
        font-size: clamp(26px, 8vw, 34px);
    }

    .tsh-project-card__services {
        font-size: 9px;
    }

}

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

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

    .tsh-project-card__link,
    .tsh-project-card__image,
    .tsh-project-card__media::after,
    .tsh-project-card__view,
    .tsh-project-card__view span,
    .tsh-project-card__line {
        transition: none;
    }

}




/* =========================================
   THE SOCIAL HOUSE — WORK RESULTS
========================================= */

.tsh-work-results {
    --tsh-black: #000000;
    --tsh-white: #ffffff;
    --tsh-muted: rgba(255, 255, 255, 0.64);
    --tsh-line: rgba(255, 255, 255, 0.22);

    position: relative;
    overflow: hidden;

    width: 100%;

    background-color: var(--tsh-black);
    color: var(--tsh-white);
}

.tsh-work-results,
.tsh-work-results * {
    box-sizing: border-box;
}

/* =========================================
   DECORATIVE SHAPES
========================================= */

.tsh-work-results__shape {
    position: absolute;

    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 46% 54% 60% 40% / 47% 42% 58% 53%;

    pointer-events: none;
}

.tsh-work-results__shape::before,
.tsh-work-results__shape::after {
    content: "";

    position: absolute;
    inset: 12%;

    border: 1px solid rgba(255, 255, 255, 0.055);
    border-radius: inherit;
}

.tsh-work-results__shape::after {
    inset: 27%;

    border-color: rgba(255, 255, 255, 0.04);
}

.tsh-work-results__shape--left {
    left: -190px;
    bottom: -230px;

    width: 440px;
    height: 440px;

    transform: rotate(25deg);
}

.tsh-work-results__shape--right {
    top: -240px;
    right: -195px;

    width: 430px;
    height: 430px;

    transform: rotate(-18deg);
}

/* =========================================
   INNER
========================================= */

.tsh-work-results__inner {
    position: relative;
    z-index: 2;

    width: min(calc(100% - 64px), 1320px);
    margin: 0 auto;

    display: grid;
    grid-template-columns: minmax(230px, 0.62fr) minmax(0, 2.38fr);
    align-items: stretch;
    gap: clamp(48px, 6vw, 90px);

    padding-top: 66px;
    padding-bottom: 66px;
}

/* =========================================
   INTRO
========================================= */

.tsh-work-results__intro {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding-right: 8px;
}

.tsh-work-results__eyebrow {
    display: block;
    margin-bottom: 18px;

    color: var(--tsh-white) !important;

    font-size: 9px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.tsh-work-results__title {
    margin: 0;

    color: var(--tsh-white) !important;

    font-size: clamp(29px, 3vw, 44px);
    font-weight: 700;
    line-height: 0.98;
    letter-spacing: -0.055em;
}

/* =========================================
   RESULTS GRID
========================================= */

.tsh-work-results__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));

    border-top: 1px solid var(--tsh-line);
    border-left: 1px solid var(--tsh-line);
}

/* =========================================
   RESULT ITEM
========================================= */

.tsh-work-result {
    min-width: 0;
    min-height: 210px;

    display: flex;
    flex-direction: column;

    padding: 26px 22px 24px;

    border-right: 1px solid var(--tsh-line);
    border-bottom: 1px solid var(--tsh-line);

    transition: background-color 0.3s ease;
}

.tsh-work-result:hover {
    background-color: rgba(255, 255, 255, 0.045);
}

/* =========================================
   VALUE
========================================= */

.tsh-work-result__value {
    display: block;
    margin-bottom: auto;

    color: var(--tsh-white) !important;

    font-size: clamp(40px, 3.8vw, 61px);
    font-weight: 700;
    line-height: 0.9;
    letter-spacing: -0.065em;

    font-variant-numeric: tabular-nums;
}

.tsh-work-result__value--text {
    font-size: clamp(28px, 2.7vw, 42px);
    line-height: 0.88;
}

/* =========================================
   LABEL
========================================= */

.tsh-work-result__label {
    margin: 28px 0 0;

    color: var(--tsh-white) !important;

    font-size: 12px;
    font-weight: 700;
    line-height: 1.25;
}

/* =========================================
   DESCRIPTION
========================================= */

.tsh-work-result__text {
    max-width: 190px;
    margin: 9px 0 0;

    color: var(--tsh-muted) !important;

    font-size: 10px;
    font-weight: 400;
    line-height: 1.55;
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 1100px) {

    .tsh-work-results__inner {
        width: min(calc(100% - 48px), 1050px);

        grid-template-columns: 1fr;
        gap: 34px;

        padding-top: 58px;
        padding-bottom: 58px;
    }

    .tsh-work-results__title br {
        display: none;
    }

    .tsh-work-results__grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .tsh-work-result {
        min-height: 195px;
        padding: 24px 18px 22px;
    }

    .tsh-work-result__value {
        font-size: clamp(38px, 5vw, 55px);
    }

    .tsh-work-result__value--text {
        font-size: clamp(27px, 3.7vw, 38px);
    }

}

/* =========================================
   SMALL TABLET
========================================= */

@media (max-width: 850px) {

    .tsh-work-results__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tsh-work-result {
        min-height: 205px;
    }

    .tsh-work-result__text {
        max-width: 250px;
    }

}

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

@media (max-width: 767px) {

    .tsh-work-results__inner {
        width: min(calc(100% - 36px), 700px);

        gap: 30px;

        padding-top: 52px;
        padding-bottom: 54px;
    }

    .tsh-work-results__eyebrow {
        font-size: 9px;
    }

    .tsh-work-results__title {
        font-size: clamp(30px, 8vw, 42px);
    }

    .tsh-work-result {
        min-height: 190px;
    }

    .tsh-work-result__value {
        font-size: clamp(39px, 10vw, 52px);
    }

    .tsh-work-result__value--text {
        font-size: clamp(28px, 7vw, 37px);
    }

    .tsh-work-results__shape {
        opacity: 0.55;
    }

}

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

@media (max-width: 480px) {

    .tsh-work-results__inner {
        width: min(calc(100% - 28px), 460px);

        padding-top: 46px;
        padding-bottom: 48px;
    }

    .tsh-work-results__grid {
        grid-template-columns: 1fr;
    }

    .tsh-work-result {
        min-height: 175px;
        padding: 23px 20px;
    }

    .tsh-work-result__value {
        margin-bottom: 30px;
    }

    .tsh-work-result__label {
        margin-top: 0;
    }

    .tsh-work-result__text {
        max-width: 330px;
    }

}

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

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

    .tsh-work-result {
        transition: none;
    }

}



/* =========================================
   THE SOCIAL HOUSE — WORK APPROACH
========================================= */

.tsh-work-approach {
    --tsh-cream: #fffcf5;
    --tsh-black: #000000;
    --tsh-grey: #686868;
    --tsh-line: rgba(0, 0, 0, 0.18);

    position: relative;
    width: 100%;

    background-color: var(--tsh-cream);
    color: var(--tsh-black);
}

.tsh-work-approach,
.tsh-work-approach * {
    box-sizing: border-box;
}

/* =========================================
   MAIN LAYOUT
========================================= */

.tsh-work-approach__inner {
    width: min(calc(100% - 64px), 1320px);
    margin: 0 auto;

    display: grid;
    grid-template-columns:
        minmax(260px, 0.88fr)
        minmax(320px, 1fr)
        minmax(260px, 0.72fr);

    align-items: start;
    gap: clamp(50px, 7vw, 110px);

    padding-top: 70px;
    padding-bottom: 72px;

    border-bottom: 1px solid var(--tsh-line);
}

/* =========================================
   HEADING
========================================= */

.tsh-work-approach__heading {
    max-width: 430px;
}

.tsh-work-approach__eyebrow {
    display: block;
    margin-bottom: 19px;

    color: var(--tsh-black) !important;

    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.tsh-work-approach__title {
    margin: 0;

    color: var(--tsh-black) !important;

    font-size: clamp(34px, 3.3vw, 50px);
    font-weight: 700;
    line-height: 0.98;
    letter-spacing: -0.06em;
}

/* =========================================
   COPY
========================================= */

.tsh-work-approach__copy {
    max-width: 500px;

    padding-top: 28px;
}

.tsh-work-approach__copy p {
    margin: 0 0 15px;

    color: var(--tsh-grey) !important;

    font-size: 14px;
    font-weight: 400;
    line-height: 1.68;
}

.tsh-work-approach__copy p:last-child {
    margin-bottom: 0;
}

/* =========================================
   PRINCIPLES
========================================= */

.tsh-work-approach__principles {
    padding-top: 15px;

    border-top: 1px solid var(--tsh-line);
}

.tsh-approach-principle {
    min-height: 64px;

    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    align-items: center;
    gap: 15px;

    padding: 12px 4px;

    border-bottom: 1px solid var(--tsh-line);
}

/* =========================================
   ICON
========================================= */

.tsh-approach-principle__icon {
    width: 34px;
    height: 34px;

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

.tsh-approach-principle__icon svg {
    display: block;

    width: 100%;
    height: 100%;

    stroke: var(--tsh-black);
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* =========================================
   PRINCIPLE TITLE
========================================= */

.tsh-approach-principle__title {
    margin: 0;

    color: var(--tsh-black) !important;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.025em;
}

/* =========================================
   SUBTLE HOVER
========================================= */

.tsh-approach-principle {
    transition:
        padding-left 0.3s ease,
        background-color 0.3s ease;
}

.tsh-approach-principle__icon {
    transition: transform 0.3s ease;
}

.tsh-approach-principle:hover {
    padding-left: 10px;

    background-color: rgba(0, 0, 0, 0.025);
}

.tsh-approach-principle:hover
.tsh-approach-principle__icon {
    transform: translateY(-3px);
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 1100px) {

    .tsh-work-approach__inner {
        width: min(calc(100% - 48px), 1050px);

        grid-template-columns:
            minmax(250px, 0.8fr)
            minmax(300px, 1fr);

        gap: 46px 60px;

        padding-top: 62px;
        padding-bottom: 64px;
    }

    .tsh-work-approach__principles {
        grid-column: 1 / -1;

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

        padding-top: 0;

        border-left: 1px solid var(--tsh-line);
    }

    .tsh-approach-principle {
        min-height: 90px;

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

        padding: 18px;

        border-right: 1px solid var(--tsh-line);
    }

    .tsh-approach-principle__title {
        font-size: 16px;
    }

}

/* =========================================
   SMALL TABLET
========================================= */

@media (max-width: 850px) {

    .tsh-work-approach__inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .tsh-work-approach__heading {
        max-width: 620px;
    }

    .tsh-work-approach__title br {
        display: none;
    }

    .tsh-work-approach__copy {
        max-width: 680px;
        padding-top: 0;
    }

    .tsh-work-approach__principles {
        grid-column: auto;
    }

}

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

@media (max-width: 767px) {

    .tsh-work-approach__inner {
        width: min(calc(100% - 36px), 700px);

        gap: 27px;

        padding-top: 54px;
        padding-bottom: 56px;
    }

    .tsh-work-approach__title {
        font-size: clamp(34px, 9vw, 46px);
    }

    .tsh-work-approach__copy p {
        font-size: 14px;
        line-height: 1.65;
    }

    .tsh-work-approach__principles {
        grid-template-columns: 1fr;

        border-left: 0;
    }

    .tsh-approach-principle {
        min-height: 70px;

        padding: 14px 6px;

        border-right: 0;
    }

    .tsh-approach-principle:hover {
        padding-left: 6px;
    }

    .tsh-approach-principle__title {
        font-size: 17px;
    }

}

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

@media (max-width: 480px) {

    .tsh-work-approach__inner {
        width: min(calc(100% - 28px), 460px);

        padding-top: 46px;
        padding-bottom: 48px;
    }

    .tsh-work-approach__eyebrow {
        font-size: 9px;
    }

    .tsh-work-approach__title {
        font-size: clamp(31px, 9vw, 40px);
    }

    .tsh-approach-principle {
        grid-template-columns: 38px minmax(0, 1fr);
        gap: 12px;
    }

    .tsh-approach-principle__icon {
        width: 31px;
        height: 31px;
    }

    .tsh-approach-principle__title {
        font-size: 16px;
    }

}

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

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

    .tsh-approach-principle,
    .tsh-approach-principle__icon {
        transition: none;
    }

}




/* =========================================
   THE SOCIAL HOUSE — WORK FINAL CTA
========================================= */

.tsh-work-cta {
    --tsh-cream: #fffcf5;
    --tsh-black: #000000;
    --tsh-white: #ffffff;
    --tsh-grey: #686868;
    --tsh-line: rgba(0, 0, 0, 0.32);

    position: relative;
    width: 100%;

    background-color: var(--tsh-cream);
    color: var(--tsh-black);
}

.tsh-work-cta,
.tsh-work-cta * {
    box-sizing: border-box;
}

/* =========================================
   MAIN CONTAINER
========================================= */

.tsh-work-cta__inner {
    width: min(calc(100% - 64px), 1320px);
    min-height: 150px;
    margin: 0 auto;

    display: grid;
    grid-template-columns:
        58px
        minmax(0, 1fr)
        auto
        100px;

    align-items: center;
    gap: clamp(32px, 5vw, 76px);

    padding: 24px 28px;

    border: 1px solid var(--tsh-line);
}

/* =========================================
   VERTICAL LABEL
========================================= */

.tsh-work-cta__side-label {
    align-self: stretch;

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

    border-right: 1px solid var(--tsh-line);

    color: var(--tsh-black);

    font-size: 8px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.22em;
    text-transform: uppercase;

    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

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

.tsh-work-cta__content {
    max-width: 690px;
}

.tsh-work-cta__title {
    margin: 0;

    color: var(--tsh-black) !important;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(26px, 2.6vw, 40px);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -0.035em;
}

.tsh-work-cta__text {
    margin: 9px 0 0;

    color: var(--tsh-grey) !important;

    font-size: 13px;
    font-weight: 400;
    line-height: 1.5;
}

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

.tsh-work-cta__button,
.tsh-work-cta__button:visited {
    position: relative;
    isolation: isolate;
    overflow: hidden;

    min-width: 170px;
    min-height: 48px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;

    padding: 0 20px;

    border: 1px solid var(--tsh-black);

    background-color: var(--tsh-black);
    color: var(--tsh-white) !important;

    font-size: 12px;
    font-weight: 700;
    line-height: 1;

    text-decoration: none !important;
    white-space: nowrap;

    box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.18);

    transition:
        color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.tsh-work-cta__button::before {
    content: "";

    position: absolute;
    inset: 0;
    z-index: -1;

    background-color: var(--tsh-white);

    transform: translateX(-101%);

    transition: transform 0.38s cubic-bezier(0.77, 0, 0.18, 1);
}

.tsh-work-cta__button span {
    display: inline-block;

    font-size: 17px;

    transition: transform 0.3s ease;
}

.tsh-work-cta__button:hover {
    color: var(--tsh-black) !important;

    transform: translate(2px, 2px);

    box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.18);
}

.tsh-work-cta__button:hover::before {
    transform: translateX(0);
}

.tsh-work-cta__button:hover span {
    transform: translateX(5px);
}

.tsh-work-cta__button:focus-visible {
    outline: 2px solid var(--tsh-black);
    outline-offset: 4px;
}

/* =========================================
   BRAND BADGE
========================================= */

.tsh-work-cta__badge {
    width: 86px;
    height: 86px;

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

    justify-self: end;

    border: 1px solid var(--tsh-black);
    border-radius: 50%;

    background-color: var(--tsh-cream);
    color: var(--tsh-black);

    text-align: center;

    transition: transform 0.35s ease;
}

.tsh-work-cta__badge:hover {
    transform: rotate(5deg);
}

.tsh-work-cta__badge-text {
    margin-bottom: 5px;

    font-size: 6px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.tsh-work-cta__badge-icon {
    width: 34px;
    height: 34px;
}

.tsh-work-cta__badge-icon svg {
    display: block;

    width: 100%;
    height: 100%;

    stroke: var(--tsh-black);
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 1050px) {

    .tsh-work-cta__inner {
        width: min(calc(100% - 48px), 1050px);
        min-height: 145px;

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

        gap: 34px;

        padding: 22px 24px;
    }

    .tsh-work-cta__badge {
        display: none;
    }

    .tsh-work-cta__title {
        font-size: clamp(25px, 3.2vw, 36px);
    }

}

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

@media (max-width: 767px) {

    .tsh-work-cta__inner {
        width: min(calc(100% - 36px), 700px);
        min-height: auto;

        grid-template-columns: 1fr;
        gap: 24px;

        padding: 30px 24px;
    }

    .tsh-work-cta__side-label {
        align-self: auto;

        justify-content: flex-start;

        padding-bottom: 15px;

        border-right: 0;
        border-bottom: 1px solid var(--tsh-line);

        font-size: 8px;

        writing-mode: initial;
        transform: none;
    }

    .tsh-work-cta__content {
        max-width: 620px;
    }

    .tsh-work-cta__title {
        font-size: clamp(29px, 8vw, 40px);
    }

    .tsh-work-cta__text {
        font-size: 13px;
    }

    .tsh-work-cta__button {
        justify-self: start;
    }

}

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

@media (max-width: 480px) {

    .tsh-work-cta__inner {
        width: min(calc(100% - 28px), 460px);

        padding: 26px 20px;
    }

    .tsh-work-cta__title {
        font-size: clamp(27px, 8.5vw, 35px);
    }

    .tsh-work-cta__button {
        width: 100%;
    }

}

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

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

    .tsh-work-cta__button,
    .tsh-work-cta__button::before,
    .tsh-work-cta__button span,
    .tsh-work-cta__badge {
        transition: none;
    }

}/* End custom CSS */