/* ========================================
   REASON SECTION
======================================== */

.reason-section {
    position: relative;

    min-height: 100vh;

    padding: 120px 7vw 80px;

    background: #111111;

    color: #ffffff;

    overflow: hidden;
}


.reason-container {
    width: 100%;
    max-width: 1500px;

    margin: auto;
}


/* ========================================
   HEADER
======================================== */

.reason-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding-bottom: 25px;

    border-bottom: 1px solid #2c2c2c;
}


.reason-label {
    display: flex;
    align-items: center;

    gap: 10px;

    font-size: 11px;

    letter-spacing: 0.18em;

    color: #aaaaaa;
}


.reason-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #8bd9e8;
}


.reason-number {
    font-size: 11px;

    color: #666666;

    letter-spacing: 0.1em;
}


/* ========================================
   HEADING
======================================== */

.reason-heading {
    padding: 85px 0 90px;
}


.reason-heading p {
    margin-bottom: 25px;

    font-size: 10px;

    letter-spacing: 0.2em;

    color: #666666;
}


.reason-heading h2 {
    font-size: clamp(75px, 10vw, 160px);

    line-height: 0.82;

    font-weight: 400;

    letter-spacing: -0.075em;
}


.reason-heading h2 span {
    color: #8bd9e8;
}


/* ========================================
   REASON CONTENT
======================================== */

.reason-content {
    display: grid;

    grid-template-columns: 55px 1fr 320px;

    gap: 35px;

    padding-bottom: 90px;
}


.reason-index {
    padding-top: 8px;

    font-size: 11px;

    color: #666666;

    letter-spacing: 0.1em;
}


/* ========================================
   REASON TEXT
======================================== */

.reason-text {
    max-width: 650px;
}


.reason-text h3 {
    margin-bottom: 30px;

    font-size: clamp(35px, 4vw, 58px);

    line-height: 0.95;

    font-weight: 400;

    letter-spacing: -0.05em;
}


.reason-text p {
    margin-bottom: 20px;

    color: #8a8a8a;

    font-size: 14px;

    line-height: 1.8;
}


/* ========================================
   CAREER CARD
======================================== */

.career-card {
    position: relative;

    align-self: start;

    min-height: 360px;

    padding: 30px;

    border: 1px solid #333333;

    overflow: hidden;

    transition:
        background 0.4s ease,
        transform 0.4s ease;
}


.career-card:hover {
    background: #8bd9e8;

    color: #111111;

    transform: translateY(-8px);
}


.career-label {
    display: block;

    margin-bottom: 35px;

    font-size: 9px;

    letter-spacing: 0.18em;

    color: #777777;
}


.career-card:hover .career-label {
    color: #333333;
}


.career-icon {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 30px;

    border: 1px solid #444444;

    border-radius: 50%;

    font-size: 15px;
}


.career-card h3 {
    margin-bottom: 15px;

    font-size: 65px;

    line-height: 0.9;

    font-weight: 400;

    letter-spacing: -0.07em;
}


.career-card p {
    max-width: 230px;

    font-size: 12px;

    line-height: 1.7;

    color: #777777;
}


.career-card:hover p {
    color: #333333;
}


.career-arrow {
    position: absolute;

    right: 25px;
    bottom: 25px;

    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #444444;

    border-radius: 50%;

    transition: transform 0.3s ease;
}


.career-card:hover .career-arrow {
    transform: rotate(45deg);
}


/* ========================================
   QUOTE
======================================== */

.reason-quote {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 25px;

    padding: 50px 0;

    border-top: 1px solid #2c2c2c;
    border-bottom: 1px solid #2c2c2c;
}


.reason-quote span {
    font-family: Georgia, serif;

    font-size: 55px;

    color: #8bd9e8;
}


.reason-quote p {
    max-width: 700px;

    text-align: center;

    font-size: clamp(20px, 3vw, 38px);

    line-height: 1.2;

    font-weight: 300;

    letter-spacing: -0.04em;

    color: #dddddd;
}


/* ========================================
   REASON RESPONSIVE
======================================== */

@media (max-width: 1000px) {

    .reason-content {
        grid-template-columns: 45px 1fr;
    }

    .career-card {
        grid-column: 2;

        max-width: 400px;
    }

}


@media (max-width: 600px) {

    .reason-section {
        padding: 80px 20px 60px;
    }

    .reason-heading {
        padding: 55px 0 65px;
    }

    .reason-heading h2 {
        font-size: 22vw;
    }

    .reason-content {
        grid-template-columns: 30px 1fr;

        gap: 15px;
    }

    .reason-text h3 {
        font-size: 42px;
    }

    .reason-text p {
        font-size: 13px;
    }

    .career-card {
        grid-column: 2;

        min-height: 300px;

        padding: 25px;
    }

    .career-card h3 {
        font-size: 55px;
    }

    .reason-quote {
        gap: 10px;
    }

    .reason-quote span {
        font-size: 35px;
    }

    .reason-quote p {
        font-size: 19px;
    }

}


/* ========================================
   GALLERY SECTION
======================================== */

.gallery-section {
    position: relative;

    min-height: 100vh;

    padding: 120px 7vw 70px;

    background: #eeeeee;

    color: #111111;

    overflow: hidden;
}


.gallery-container {
    width: 100%;
    max-width: 1500px;

    margin: auto;
}


/* ========================================
   HEADER
======================================== */

.gallery-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding-bottom: 25px;

    border-bottom: 1px solid #d0d0d0;
}


.gallery-label {
    display: flex;
    align-items: center;

    gap: 10px;

    font-size: 11px;

    letter-spacing: 0.18em;

    color: #666666;
}


.gallery-dot {
    width: 7px;
    height: 7px;

    background: #111111;

    border-radius: 50%;
}


.gallery-number {
    font-size: 11px;

    color: #888888;
}


/* ========================================
   HEADING
======================================== */

.gallery-heading {
    padding: 80px 0;
}


.gallery-heading p {
    margin-bottom: 25px;

    font-size: 10px;

    letter-spacing: 0.2em;

    color: #999999;
}


.gallery-heading h2 {
    font-size: clamp(70px, 10vw, 155px);

    line-height: 0.82;

    font-weight: 400;

    letter-spacing: -0.075em;
}


.gallery-heading h2 span {
    color: #999999;
}


/* ========================================
   GALLERY GRID
======================================== */

.gallery-grid {
    display: grid;

    grid-template-columns: 1.4fr 0.8fr 0.8fr;

    gap: 15px;

    align-items: start;
}


/* ========================================
   GALLERY ITEM
======================================== */

.gallery-item {
    position: relative;

    height: 450px;

    overflow: hidden;

    background: #cccccc;
}


.gallery-item.gallery-large {
    height: 570px;
}


.gallery-item img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    filter: grayscale(100%);

    transition:
        transform 0.7s cubic-bezier(.16,1,.3,1),
        filter 0.7s ease;
}


.gallery-item:hover img {
    transform: scale(1.06);

    filter: grayscale(0%);
}


/* ========================================
   OVERLAY
======================================== */

.gallery-overlay {
    position: absolute;

    inset: 0;

    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    padding: 20px;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,0.45),
            transparent 35%
        );

    color: #ffffff;

    pointer-events: none;
}


.gallery-overlay span {
    font-size: 11px;

    letter-spacing: 0.1em;
}


.gallery-overlay i {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,0.7);

    border-radius: 50%;

    font-size: 12px;

    transition:
        transform 0.4s ease,
        background 0.4s ease;
}


.gallery-item:hover .gallery-overlay i {
    transform: rotate(45deg);

    background: #ffffff;

    color: #111111;
}


/* ========================================
   FOOTER
======================================== */

.gallery-footer {
    display: flex;

    justify-content: space-between;

    padding-top: 20px;

    font-size: 9px;

    letter-spacing: 0.15em;

    color: #999999;
}


/* ========================================
   GALLERY RESPONSIVE
======================================== */

@media (max-width: 900px) {

    .gallery-section {
        padding: 90px 5vw 60px;
    }

    .gallery-heading {
        padding: 60px 0;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-item.gallery-large {
        grid-column: span 2;

        height: 500px;
    }

}


@media (max-width: 600px) {

    .gallery-section {
        padding: 80px 20px 50px;
    }

    .gallery-heading {
        padding: 50px 0 60px;
    }

    .gallery-heading h2 {
        font-size: 22vw;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item,
    .gallery-item.gallery-large {
        grid-column: auto;

        height: 400px;
    }

    .gallery-footer {
        flex-direction: column;

        gap: 10px;
    }

}