*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;

    background: #fbf7f4;
    color: #171514;

    font-family: "DM Sans", Arial, sans-serif;

    font-size: 10px;
}

img {
    width: 100%;
    display: block;
    border-radius: 3px;
}

a {
    color: inherit;
    text-decoration: none;
}


/* ================= HERO ================= */

.journey-hero {
    min-height: 600px;
    padding: 90px 12vw;
    display: grid;
    grid-template-columns: 1fr 420px;
    align-items: center;
    gap: 70px;
    background-image: linear-gradient(
      rgba(255, 255, 255, 0.5),
      rgba(255, 255, 255, 0.5)
    ),
     url("/assets/portrait.jpeg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-copy {
    max-width: 650px;
    margin-left: 0;
}

.hero-copy h1 {
    margin: 0 0 25px;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(45px, 5.4vw, 70px);
    font-weight: 400;
    line-height: 0.98;
    letter-spacing: -0.04em;
}

.hero-copy p {
    max-width: 560px;

    color: #625b56;

    font-size: 9px;

    line-height: 1.7;
}

/* .hero-image {
  width: 100%;
}

.hero-image img {
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
} */


/* ================= JOURNEY ================= */

.journey-section {
    min-height: 290px;

    padding: 65px 5%;

    display: grid;

    grid-template-columns: 38% 62%;

    background: #f4ebe5;

    border-top: 1px solid #ded5cf;
    border-bottom: 1px solid #ded5cf;
}

.journey-title {
    padding-right: 60px;
}

.journey-title span,
.project-copy>span {
    display: block;

    margin-bottom: 12px;

    font-size: 6px;

    letter-spacing: 0.15em;

    text-transform: uppercase;
}

.journey-title h2 {
    margin: 0;

    max-width: 380px;

    font-family: "Playfair Display", Georgia, serif;

    font-size: 34px;

    font-weight: 400;

    line-height: 1.05;
}

.journey-details {
    padding-left: 30px;

    border-left: 1px solid #d4cbc5;
}

.journey-details article {
    max-width: 520px;

    padding-bottom: 20px;

    margin-bottom: 20px;

    border-bottom: 1px solid #ddd4ce;
}

.journey-details article:last-child {
    margin-bottom: 0;
    border-bottom: 0;
}

.journey-details h3 {
    margin: 0 0 8px;

    font-family: "Playfair Display", Georgia, serif;

    font-size: 18px;

    font-weight: 400;
}

.journey-details p {
    margin: 0;

    color: #645d58;

    font-size: 7.5px;

    line-height: 1.6;
}


/* ================= PHILOSOPHY ================= */

.philosophy {
    min-height: 430px;

    padding: 100px 15%;

    display: flex;
    align-items: center;
}

.philosophy blockquote {
    max-width: 720px;

    margin: 0;

    padding-left: 30px;

    border-left: 1px solid #aaa19b;

    font-family: "Playfair Display", Georgia, serif;

    font-size: clamp(32px, 4vw, 48px);

    font-style: italic;

    line-height: 1.12;

    letter-spacing: -0.025em;
}

.philosophy cite {
    display: block;

    margin-top: 20px;

    font-family: "DM Sans", Arial, sans-serif;

    font-size: 6px;

    font-style: normal;

    letter-spacing: 0.14em;

    text-transform: uppercase;

    color: #6d6560;
}


/* ================= 9BIZUB ================= */

.project-story {
    padding: 80px 5% 110px;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 10%;

    align-items: center;
}

.project-image {
    width: 100%;
}

.project-image img {
    width: 100%;
    aspect-ratio: 1.2;
    object-fit: cover;
}

.project-copy {
    max-width: 430px;
}

.project-copy h2 {
    margin: 0 0 20px;

    font-family: "Playfair Display", Georgia, serif;

    font-size: 35px;

    font-weight: 400;

    line-height: 1.05;
}

.project-copy p {
    margin-bottom: 22px;

    color: #625b56;

    font-size: 8px;

    line-height: 1.7;
}

.project-copy a {
    display: inline-block;

    padding-bottom: 5px;

    border-bottom: 1px solid #8e8580;

    font-size: 7px;

    letter-spacing: 0.14em;

    text-transform: uppercase;
}

.project-copy a span {
    margin-left: 5px;
}







/* ================= TABLET ================= */

@media (max-width: 900px) {

    .journey-hero {
        grid-template-columns: 1fr 280px;

        gap: 45px;
    }

    .journey-section {
        grid-template-columns: 40% 60%;
    }

    .philosophy {
        padding-inline: 10%;
    }

    .project-story {
        gap: 6%;
    }

}


/* ================= MOBILE ================= */


@media (max-width: 700px) {

    /* HERO */

    .journey-hero {
        min-height: auto;

        padding: 55px 7% 65px;

        display: flex;

        flex-direction: column;

        align-items: flex-start;

        gap: 35px;
    }

    .hero-copy {
        order: 1;
    }

    .hero-image {
        order: 0;

        width: 75%;

        margin-left: auto;
    }

    .hero-image img {
        height: 330px;
    }

    .hero-copy h1 {
        font-size: 42px;

        line-height: 1;
    }

    .hero-copy p {
        font-size: 8.5px;
    }


    /* JOURNEY */

    .journey-section {
        padding: 60px 7%;

        display: block;
    }

    .journey-title {
        padding-right: 0;

        margin-bottom: 40px;
    }

    .journey-title h2 {
        font-size: 31px;
    }

    .journey-details {
        padding-left: 20px;
    }

    .journey-details h3 {
        font-size: 18px;
    }


    /* QUOTE */

    .philosophy {
        min-height: 470px;

        padding: 75px 7%;
    }

    .philosophy blockquote {
        padding-left: 20px;

        font-size: 31px;
    }


    /* PROJECT */

    .project-story {
        padding: 65px 7% 80px;

        display: flex;

        flex-direction: column;

        align-items: stretch;

        gap: 40px;
    }

    .project-copy {
        max-width: none;
    }

    .project-copy h2 {
        font-size: 31px;
    }



}


/* ================= SMALL PHONES ================= */

@media (max-width: 400px) {

    .hero-image {
        width: 85%;
    }

    .hero-image img {
        height: 290px;
    }

    .hero-copy h1 {
        font-size: 36px;
    }

    .journey-title h2 {
        font-size: 28px;
    }

    .philosophy {
        min-height: 420px;
    }

    .philosophy blockquote {
        font-size: 27px;
    }

    .project-copy h2 {
        font-size: 28px;
    }

}