/* =========================================================
   TINK HOME — REALISATIONS
   ========================================================= */

.page-hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #10171b;
    color: #fff;
}

.page-hero-bg, 
.page-hero-overlay {
    position: absolute;
    inset: 0;
}

.page-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.45) saturate(0.76);
    transition: transform 1.2s ease;
}

.page-hero:hover .page-hero-bg img {
    transform: scale(1.035);
}

.page-hero-overlay {
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.72),
        rgba(0, 0, 0, 0.25)
    );
    z-index: 1;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    padding: 140px 0 80px;
    color: #fff;
    width: min(1180px, calc(100% - 44px));
    margin: 0 auto;
}
.page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(3.6rem, 8vw, 7.8rem);
    line-height: .92;
    letter-spacing: -.055em;
    margin: 22px 0;
}

.page-hero h1 em {
    font-style: normal;
    color: #c9c9c4;
}

.page-hero-content > p:last-child {
    max-width: 560px;
    font-size: 1.08rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, .78);
}


/* =========================================================
   PROJECTS SECTION
   ========================================================= */

.projects {
    background: #f5f5f2;
    padding: 100px 0;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.project-card {
    background: #fff;
    overflow: hidden;
    border: 1px solid var(--line, #dce3e6);
}

.project-card-large, 
.project-card-wide {
    grid-column: span 2;
}

.project-image {
    position: relative;
    height: 420px;
    overflow: hidden;
}

.project-card-large .project-image, 
.project-card-wide .project-image {
    height: 520px;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.035);
}

.project-image > span {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #fff;
    padding: 9px 12px;
    font-size: .72rem;
    letter-spacing: .12em;
    font-weight: 600;
}

.project-info {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding: 25px 26px 28px;
}

.project-info small {
    font-size: .68rem;
    letter-spacing: .16em;
    color: #777;
    text-transform: uppercase;
}

.project-info h3 {
    font-family: var(--font-display);
    font-size: 1.65rem;
    line-height: 1.05;
    letter-spacing: -.035em;
    margin: 10px 0 0;
    max-width: 520px;
}

.project-info > p {
    max-width: 330px;
    color: #777;
    line-height: 1.65;
    margin: 4px 0 0;
    font-size: 0.95rem;
}


/* =========================================================
   STATEMENT SECTION
   ========================================================= */

.project-statement {
    padding: 150px 0;
    background: #fff;
}

.statement-inner {
    max-width: 850px;
}

.statement-inner h2 {
    font-family: var(--font-display);
    font-size: clamp(2.7rem, 6vw, 5.8rem);
    line-height: .98;
    letter-spacing: -.05em;
    margin: 25px 0;
}

.statement-inner h2 em {
    font-style: normal;
    color: #777;
}

.statement-inner > p:last-child {
    max-width: 620px;
    color: #666;
    line-height: 1.8;
    font-size: 1.05rem;
}


/* =========================================================
   RESPONSIVE / MEDIA QUERIES
   ========================================================= */

@media (max-width: 760px) {
    .page-hero-content {
        padding-top: 120px;
        padding-bottom: 55px;
    }

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

    .project-card-large, 
    .project-card-wide {
        grid-column: span 1;
    }

    .project-image, 
    .project-card-large .project-image, 
    .project-card-wide .project-image {
        height: 360px;
    }

    .project-info {
        display: block;
    }

    .project-info > p {
        margin-top: 18px;
    }

    .project-statement {
        padding: 95px 0;
    }
}