/* =========================================================
   SATYA — PROJECTS PAGE
   Complete Projects Stylesheet
========================================================= */


/* =========================================================
   PROJECTS HERO
========================================================= */

.projects-hero {

    position: relative;

    min-height: 65vh;

    display: flex;
    align-items: center;

    background:
        url("../images/projects/hero/projects-hero.jpg")
        center right / cover no-repeat;

    overflow: hidden;
}


/* Hero Overlay */

.projects-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(7, 45, 20, .84) 0%,
            rgba(7, 45, 20, .66) 45%,
            rgba(0, 0, 0, .20) 100%
        );
}


/* Hero Container */

.projects-hero .container {

    position: relative;

    z-index: 2;

    width: 100%;
}


/* Hero Content */

.projects-hero-content {

    max-width: 700px;

    color: #ffffff;
}


/* Hero Section Tag */

.projects-hero .section-tag {

    display: inline-block;

    margin-bottom: 20px;

    color: #9EE37D;

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 3px;

    text-transform: uppercase;
}


/* Hero Heading */

.projects-hero h1 {

    font-family: var(--heading-font);

    font-size: 64px;

    line-height: 1.1;

    margin: 0 0 25px;

    color: #ffffff;
}


/* Hero Description */

.projects-hero p {

    max-width: 650px;

    margin: 0 0 35px;

    color: rgba(255, 255, 255, .90);

    font-size: 20px;

    line-height: 1.8;
}


/* Breadcrumb */

.projects-hero .breadcrumb {

    display: flex;

    align-items: center;

    gap: 12px;

    color: rgba(255, 255, 255, .75);

    font-size: 15px;
}


.projects-hero .breadcrumb a {

    color: #ffffff;

    transition: color .3s ease;
}


.projects-hero .breadcrumb a:hover {

    color: #9EE37D;
}


.projects-hero .breadcrumb span:last-child {

    color: #9EE37D;
}


/* =========================================================
   OUR APPROACH
========================================================= */

.projects-approach {

    padding: 120px 0;

    background: var(--white);

    overflow: hidden;
}


.approach-grid {

    display: grid;

    grid-template-columns: 55% 45%;

    align-items: center;

    gap: 70px;
}


/* Approach Content */

.approach-content {

    max-width: 650px;
}


.approach-content .section-tag {

    display: inline-block;

    margin-bottom: 18px;

    color: var(--primary-green);

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 3px;

    text-transform: uppercase;
}


.approach-content h2 {

    font-family: var(--heading-font);

    font-size: 52px;

    line-height: 1.2;

    color: var(--dark);

    margin: 0 0 30px;
}


.approach-content p {

    color: var(--text);

    font-size: 17px;

    line-height: 1.9;

    margin: 0 0 20px;
}


/* Approach Image */

.approach-image {

    position: relative;

    margin: 0;
}


.approach-image img {

    display: block;

    width: 100%;

    height: 560px;

    object-fit: cover;

    border-radius: 24px;

    box-shadow:
        0 25px 60px rgba(0, 0, 0, .12);

    transition:
        transform .5s ease;
}


.approach-image:hover img {

    transform: scale(1.03);
}


/* =========================================================
   DOCUMENTED PROJECT SECTION
========================================================= */

.documented-project {

    position: relative;

    padding: 120px 0;

    background: #f7faf8;

    overflow: hidden;
}


/* =========================================================
   PROJECT SECTION HEADER
========================================================= */

.project-section-header {

    max-width: 850px;

    margin: 0 auto 75px;

    text-align: center;
}


.project-section-header .section-tag {

    display: inline-block;

    margin-bottom: 18px;

    color: var(--primary-green);

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 3px;

    text-transform: uppercase;
}


.project-section-header h2 {

    font-family: var(--heading-font);

    font-size: 52px;

    line-height: 1.18;

    color: var(--dark);

    margin: 0 0 25px;
}


.project-section-header p {

    max-width: 780px;

    margin: 0 auto 18px;

    color: var(--text);

    font-size: 17px;

    line-height: 1.9;
}


.project-section-header p:last-child {

    margin-bottom: 0;
}


/* =========================================================
   PROJECT 01 — FEATURED PROJECT
========================================================= */

.project-feature {

    display: block;

    width: 100%;

    background: #ffffff;

    border-radius: 28px;

    overflow: hidden;

    border-top: 5px solid var(--primary-green);

    box-shadow:
        0 20px 60px rgba(0, 0, 0, .08);

    margin-bottom: 100px;
}


/* =========================================================
   PROJECT COVER IMAGE
========================================================= */

.project-feature-image {

    position: relative;

    width: 100%;

    aspect-ratio: 16 / 9;

    margin: 0;

    overflow: hidden;

    background: #e9efeb;
}


.project-feature-image::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, .12),
            transparent 50%
        );

    pointer-events: none;
}


.project-feature-image img {

    display: block;

    width: 100%;

    height: 100%;

    object-fit: cover;

    object-position: center;

    transition:
        transform .6s ease;
}


.project-feature:hover
.project-feature-image img {

    transform: scale(1.02);
}


/* =========================================================
   PROJECT INFORMATION
========================================================= */

.project-feature-content {

    padding: 55px 60px 60px;

    max-width: 1100px;

    margin: 0 auto;
}


/* Project Number */

.project-number {

    display: block;

    margin-bottom: 12px;

    color: var(--primary-green);

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 2.5px;

    text-transform: uppercase;
}


/* Project Category */

.project-category {

    display: inline-flex;

    align-items: center;

    width: fit-content;

    padding: 9px 18px;

    margin-bottom: 22px;

    border-radius: 999px;

    background: rgba(11, 122, 51, .09);

    color: var(--primary-green);

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 1px;

    text-transform: uppercase;
}


/* Project Title */

.project-feature-content h3 {

    font-family: var(--heading-font);

    color: var(--dark);

    font-size: 52px;

    line-height: 1.12;

    margin: 0 0 8px;
}


/* Project Subtitle */

.project-feature-content h4 {

    color: var(--primary-green);

    font-size: 21px;

    font-weight: 600;

    line-height: 1.4;

    margin: 0 0 30px;
}


/* Project Description */

.project-feature-content > p {

    max-width: 950px;

    color: var(--text);

    font-size: 16px;

    line-height: 1.9;

    margin: 0 0 19px;
}


.project-feature-content > p:last-of-type {

    margin-bottom: 0;
}


.project-feature-content strong {

    color: var(--dark);

    font-weight: 700;
}


/* =========================================================
   PROJECT DETAILS
========================================================= */

.project-details {

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 14px;

    margin-top: 32px;

    padding-top: 30px;

    border-top: 1px solid #e5e9e6;
}


.project-detail {

    display: flex;

    flex-direction: column;

    gap: 6px;

    min-width: 0;

    padding: 15px 16px;

    background: #f7faf8;

    border: 1px solid #e7ede9;

    border-radius: 13px;
}


.detail-label {

    color: var(--primary-green);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}


.project-detail strong {

    color: var(--dark);

    font-size: 14px;

    line-height: 1.5;

    overflow-wrap: anywhere;
}


/* =========================================================
   PROJECT STORY
========================================================= */

.project-story {

    display: grid;

    grid-template-columns:
        minmax(260px, 35%)
        minmax(0, 65%);

    gap: 70px;

    padding: 80px 0;

    margin-bottom: 100px;

    border-top: 1px solid #e1e7e3;

    border-bottom: 1px solid #e1e7e3;
}


.project-story-heading {

    position: sticky;

    top: 120px;

    align-self: start;
}


.project-story-heading .section-tag {

    display: inline-block;

    margin-bottom: 18px;

    color: var(--primary-green);

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 2.5px;

    text-transform: uppercase;
}


.project-story-heading h3 {

    font-family: var(--heading-font);

    color: var(--dark);

    font-size: 42px;

    line-height: 1.2;

    margin: 0;
}


.project-story-content {

    max-width: 800px;
}


.project-story-content p {

    color: var(--text);

    font-size: 17px;

    line-height: 1.95;

    margin: 0 0 22px;
}


.project-story-content p:last-child {

    margin-bottom: 0;
}


.project-story-content strong {

    color: var(--dark);
}


/* =========================================================
   PROGRAMME HIGHLIGHTS
========================================================= */

.project-highlights {

    margin-bottom: 110px;
}


.project-highlights-heading {

    max-width: 760px;

    margin: 0 auto 55px;

    text-align: center;
}


.project-highlights-heading .section-tag {

    display: inline-block;

    margin-bottom: 15px;

    color: var(--primary-green);

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 2.5px;

    text-transform: uppercase;
}


.project-highlights-heading h3 {

    font-family: var(--heading-font);

    color: var(--dark);

    font-size: 44px;

    line-height: 1.2;

    margin: 0 0 18px;
}


.project-highlights-heading p {

    color: var(--text);

    font-size: 16px;

    line-height: 1.8;

    margin: 0;
}


/* =========================================================
   HIGHLIGHTS GRID
========================================================= */

.highlights-grid {

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 28px;
}


.highlight-card {

    position: relative;

    padding: 38px 32px;

    background: #ffffff;

    border: 1px solid #e7ece9;

    border-radius: 22px;

    box-shadow:
        0 12px 35px rgba(0, 0, 0, .055);

    overflow: hidden;

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}


.highlight-card::before {

    content: "";

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 4px;

    background: var(--primary-green);
}


.highlight-card:hover {

    transform: translateY(-7px);

    border-color: rgba(11, 122, 51, .20);

    box-shadow:
        0 22px 50px rgba(0, 0, 0, .10);
}


/* Highlight Icon */

.highlight-icon {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 58px;

    height: 58px;

    margin-bottom: 22px;

    border-radius: 16px;

    background: rgba(11, 122, 51, .09);

    color: var(--primary-green);

    font-size: 23px;
}


/* Highlight Number */

.highlight-number {

    position: absolute;

    top: 27px;

    right: 27px;

    color: rgba(11, 122, 51, .13);

    font-size: 32px;

    font-weight: 800;
}


.highlight-card h4 {

    font-family: var(--heading-font);

    color: var(--dark);

    font-size: 25px;

    line-height: 1.25;

    margin: 0 0 13px;
}


.highlight-card p {

    color: var(--text);

    font-size: 15px;

    line-height: 1.8;

    margin: 0;
}


/* =========================================================
   PEOPLE & PARTICIPATION
========================================================= */

.project-participation {

    display: grid;

    grid-template-columns:
        minmax(0, 1fr) 340px;

    gap: 60px;

    align-items: center;

    padding: 70px 65px;

    margin-bottom: 110px;

    background:
        linear-gradient(
            135deg,
            #ffffff 0%,
            #f3faf6 100%
        );

    border: 1px solid #e2ebe5;

    border-radius: 28px;

    box-shadow:
        0 15px 45px rgba(0, 0, 0, .055);
}


.participation-content {

    max-width: 780px;
}


.participation-content .section-tag {

    display: inline-block;

    margin-bottom: 16px;

    color: var(--primary-green);

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 2.5px;

    text-transform: uppercase;
}


.participation-content h3 {

    font-family: var(--heading-font);

    color: var(--dark);

    font-size: 42px;

    line-height: 1.2;

    margin: 0 0 25px;
}


.participation-content p {

    color: var(--text);

    font-size: 16px;

    line-height: 1.9;

    margin: 0 0 18px;
}


.participation-content p:last-child {

    margin-bottom: 0;
}


.participation-content strong {

    color: var(--dark);
}


/* =========================================================
   PARTICIPATION NOTE
========================================================= */

.participation-note {

    padding: 35px 30px;

    text-align: center;

    background: #ffffff;

    border-top: 4px solid var(--primary-green);

    border-radius: 20px;

    box-shadow:
        0 12px 35px rgba(0, 0, 0, .07);
}


.participation-note i {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    width: 60px;

    height: 60px;

    margin-bottom: 18px;

    border-radius: 50%;

    background: rgba(11, 122, 51, .09);

    color: var(--primary-green);

    font-size: 25px;
}


.participation-note h4 {

    font-family: var(--heading-font);

    color: var(--dark);

    font-size: 25px;

    line-height: 1.25;

    margin: 0 0 12px;
}


.participation-note p {

    color: var(--text);

    font-size: 15px;

    line-height: 1.75;

    margin: 0;
}


/* =========================================================
   PROJECT GALLERY
========================================================= */

.project-gallery-section {

    margin-bottom: 110px;
}


.project-gallery-header {

    max-width: 800px;

    margin: 0 auto 55px;

    text-align: center;
}


.project-gallery-header .section-tag {

    display: inline-block;

    margin-bottom: 16px;

    color: var(--primary-green);

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 2.5px;

    text-transform: uppercase;
}


.project-gallery-header h3 {

    font-family: var(--heading-font);

    color: var(--dark);

    font-size: 46px;

    line-height: 1.2;

    margin: 0 0 18px;
}


.project-gallery-header p {

    color: var(--text);

    font-size: 16px;

    line-height: 1.85;

    margin: 0;
}


/* =========================================================
   PROJECT GALLERY GRID
========================================================= */

.project-gallery {

    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 18px;
}


.project-gallery-item {

    position: relative;

    margin: 0;

    aspect-ratio: 4 / 3;

    overflow: hidden;

    background: #e9efeb;

    border-radius: 16px;

    cursor: pointer;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, .06);
}


.project-gallery-item::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, .20),
            transparent 55%
        );

    opacity: 0;

    pointer-events: none;

    transition:
        opacity .35s ease;
}


.project-gallery-item img {

    display: block;

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition:
        transform .5s ease;
}


.project-gallery-item:hover img {

    transform: scale(1.06);
}


.project-gallery-item:hover::after {

    opacity: 1;
}


/* =========================================================
   PROJECT CLOSING
========================================================= */

.project-closing {

    max-width: 850px;

    margin: 0 auto;

    padding: 70px 50px;

    text-align: center;

    background: #ffffff;

    border: 1px solid #e3ebe6;

    border-radius: 26px;

    box-shadow:
        0 15px 45px rgba(0, 0, 0, .06);
}


.project-closing .section-tag {

    display: inline-block;

    margin-bottom: 18px;

    color: var(--primary-green);

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 2.5px;

    text-transform: uppercase;
}


.project-closing h3 {

    font-family: var(--heading-font);

    color: var(--dark);

    font-size: 44px;

    line-height: 1.2;

    margin: 0 0 22px;
}


.project-closing p {

    max-width: 720px;

    margin: 0 auto 18px;

    color: var(--text);

    font-size: 16px;

    line-height: 1.9;
}


.project-closing p:last-child {

    margin-bottom: 0;
}


/* =========================================================
   TABLET — MAX 992px
========================================================= */

@media (max-width: 992px) {

    /* Hero */

    .projects-hero {

        min-height: 60vh;
    }


    .projects-hero h1 {

        font-size: 52px;
    }


    /* Approach */

    .approach-grid {

        grid-template-columns: 1fr;

        gap: 50px;
    }


    .approach-content {

        max-width: 100%;
    }


    .approach-content h2 {

        font-size: 40px;
    }


    .approach-image img {

        height: 500px;
    }


    /* Project Feature */

    .project-feature {

        border-top-width: 5px;
    }


    .project-feature-content {

        padding: 50px;
    }


    .project-feature-content h3 {

        font-size: 44px;
    }


    .project-details {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    /* Story */

    .project-story {

        grid-template-columns: 1fr;

        gap: 35px;

        padding: 65px 0;
    }


    .project-story-heading {

        position: static;
    }


    .project-story-heading h3 {

        font-size: 38px;
    }


    /* Highlights */

    .highlights-grid {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    /* Participation */

    .project-participation {

        grid-template-columns: 1fr;

        padding: 55px 45px;
    }


    .participation-note {

        width: 100%;

        max-width: 420px;

        margin: 0 auto;
    }


    /* Gallery */

    .project-gallery {

        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }

}


/* =========================================================
   MOBILE — MAX 768px
========================================================= */

@media (max-width: 768px) {

    /* Hero */

    .projects-hero {

        min-height: 50vh;

        background-position: 70% center;
    }


    .projects-hero-content {

        max-width: 100%;

        margin: auto;

        text-align: center;
    }


    .projects-hero h1 {

        font-size: 38px;
    }


    .projects-hero p {

        font-size: 17px;
    }


    .projects-hero .breadcrumb {

        justify-content: center;
    }


    /* Approach */

    .projects-approach {

        padding: 80px 0;
    }


    .approach-content h2 {

        font-size: 34px;
    }


    .approach-content p {

        font-size: 16px;
    }


    .approach-image img {

        height: 360px;
    }


    /* Documented Project */

    .documented-project {

        padding: 80px 0;
    }


    /* Project Section Header */

    .project-section-header {

        margin-bottom: 55px;
    }


    .project-section-header h2 {

        font-size: 36px;
    }


    .project-section-header p {

        font-size: 16px;

        line-height: 1.8;
    }


    /* Project Feature */

    .project-feature {

        border-radius: 20px;

        border-top-width: 4px;

        margin-bottom: 75px;
    }


    .project-feature-image {

        aspect-ratio: 16 / 9;
    }


    .project-feature-content {

        padding: 38px 28px 42px;
    }


    .project-number {

        font-size: 12px;

        letter-spacing: 2px;
    }


    .project-category {

        padding: 8px 15px;

        margin-bottom: 20px;

        font-size: 11px;
    }


    .project-feature-content h3 {

        font-size: 36px;
    }


    .project-feature-content h4 {

        font-size: 18px;

        margin-bottom: 24px;
    }


    .project-feature-content > p {

        font-size: 15px;

        line-height: 1.85;
    }


    /* Project Details */

    .project-details {

        grid-template-columns: 1fr;

        gap: 11px;

        margin-top: 27px;

        padding-top: 25px;
    }


    /* Story */

    .project-story {

        padding: 55px 0;

        margin-bottom: 75px;
    }


    .project-story-heading h3 {

        font-size: 34px;
    }


    .project-story-content p {

        font-size: 15px;

        line-height: 1.85;
    }


    /* Highlights */

    .project-highlights {

        margin-bottom: 75px;
    }


    .project-highlights-heading {

        margin-bottom: 40px;
    }


    .project-highlights-heading h3 {

        font-size: 35px;
    }


    .highlights-grid {

        grid-template-columns: 1fr;
    }


    .highlight-card {

        padding: 32px 28px;
    }


    /* Participation */

    .project-participation {

        padding: 40px 28px;

        gap: 35px;

        margin-bottom: 75px;

        border-radius: 20px;
    }


    .participation-content h3 {

        font-size: 34px;
    }


    .participation-content p {

        font-size: 15px;

        line-height: 1.85;
    }


    /* Participation Note */

    .participation-note {

        padding: 30px 24px;
    }


    /* Project Gallery */

    .project-gallery-section {

        margin-bottom: 75px;
    }


    .project-gallery-header {

        margin-bottom: 35px;
    }


    .project-gallery-header h3 {

        font-size: 36px;
    }


    .project-gallery-header p {

        font-size: 15px;

        line-height: 1.8;
    }


    .project-gallery {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 12px;
    }


    .project-gallery-item {

        border-radius: 12px;
    }


    /* Closing */

    .project-closing {

        padding: 50px 28px;

        border-radius: 20px;
    }


    .project-closing h3 {

        font-size: 35px;
    }


    .project-closing p {

        font-size: 15px;

        line-height: 1.85;
    }

}


/* =========================================================
   SMALL MOBILE — MAX 480px
========================================================= */

@media (max-width: 480px) {

    /* Hero */

    .projects-hero h1 {

        font-size: 34px;
    }


    .projects-hero p {

        font-size: 16px;
    }


    /* Section Header */

    .project-section-header h2 {

        font-size: 31px;
    }


    /* Project Feature */

    .project-feature-content {

        padding: 32px 22px 36px;
    }


    .project-feature-content h3 {

        font-size: 31px;
    }


    .project-feature-content h4 {

        font-size: 17px;
    }


    /* Details */

    .project-details {

        gap: 10px;
    }


    .project-detail {

        padding: 12px;
    }


    /* Story */

    .project-story-heading h3 {

        font-size: 30px;
    }


    /* Highlights */

    .project-highlights-heading h3 {

        font-size: 30px;
    }


    /* Participation */

    .participation-content h3 {

        font-size: 30px;
    }


    /* Gallery */

    .project-gallery-header h3 {

        font-size: 31px;
    }


    .project-gallery {

        gap: 9px;
    }


    .project-gallery-item {

        border-radius: 9px;
    }


    /* Closing */

    .project-closing {

        padding: 40px 22px;
    }


    .project-closing h3 {

        font-size: 30px;
    }

}