* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #eef0df;
    color: #243326;
    font-family: "Manrope", sans-serif;
}

.nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 28px 5vw;

    display: flex;
    align-items: center;
    justify-content: space-between;

    z-index: 10;
}

.logo {
    font-family: "Fraunces", serif;
    font-size: 30px;
    font-weight: 600;
    letter-spacing: -1px;
}

.logo span {
    color: #68845d;
}

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    color: #243326;
    text-decoration: none;
    font-size: 13px;
}

.menu-btn {
    border: 1px solid #243326;
    background: transparent;
    color: #243326;

    padding: 11px 18px;
    border-radius: 30px;

    font-family: "Manrope", sans-serif;
    cursor: pointer;
}

.hero {
    min-height: 100vh;
    padding: 150px 5vw 35px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    position: relative;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 75% 45%,
            rgba(126, 151, 104, 0.28),
            transparent 30%
        ),
        #eef0df;
}

.hero-top,
.hero-bottom {
    display: flex;
    justify-content: space-between;

    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #63715e;
}

.hero-content {
    position: relative;
    max-width: 1100px;
}

.hero-small {
    margin-bottom: 30px;

    font-size: 13px;
    line-height: 1.6;
    color: #63715e;
}

.hero h1 {
    font-family: "Fraunces", serif;
    font-size: clamp(60px, 9vw, 145px);
    font-weight: 400;
    line-height: 0.85;
    letter-spacing: -5px;
}

.hero h1 em {
    color: #68845d;
    font-style: italic;
}

.hero-link {
    display: inline-flex;
    gap: 15px;
    align-items: center;

    margin-top: 50px;

    color: #243326;
    text-decoration: none;

    border-bottom: 1px solid #68845d;
    padding-bottom: 8px;

    font-size: 13px;
}

.hero-link span {
    font-size: 18px;
}
.botanical-visual {
    position: absolute;
    right: 7vw;
    top: 50%;
    transform: translateY(-50%);
    width: 270px;
}

.leaf-card {
    position: relative;
    width: 270px;
    height: 360px;

    border-radius: 140px 140px 25px 25px;
    overflow: hidden;

    background: #344a32;

    box-shadow:
        0 25px 60px rgba(36, 51, 38, 0.18);

    transform: rotate(5deg);
    transition: transform 0.6s ease;
}

.leaf-card:hover {
    transform: rotate(0deg) translateY(-10px);
}

.leaf-image {
    width: 100%;
    height: 100%;

    background:
        linear-gradient(
            to bottom,
            rgba(20, 35, 22, 0.05),
            rgba(20, 35, 22, 0.55)
        ),
        url("https://images.unsplash.com/photo-1614594975525-e45190c55d0b?auto=format&fit=crop&w=900&q=85")
        center / cover;
}

.leaf-info {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 20px;

    display: flex;
    flex-direction: column;
    gap: 6px;

    color: #f4f1df;
}

.leaf-info span {
    font-size: 9px;
    letter-spacing: 2px;
    opacity: 0.7;
}

.leaf-info strong {
    font-family: "Fraunces", serif;
    font-size: 20px;
    font-weight: 400;
}
@media (max-width: 900px) {

    .botanical-visual {
        position: relative;
        right: auto;
        top: auto;
        transform: none;

        margin: 70px auto 0;
    }

    .hero {
        padding-top: 130px;
    }

    .hero-content {
        width: 100%;
    }

    .hero h1 {
        font-size: clamp(55px, 12vw, 100px);
    }
}
/* PLANT LIBRARY */

.plants-section {
    min-height: 100vh;
    padding: 150px 5vw;

    background: #f5f2e8;
}

.plants-heading {
    max-width: 900px;
    margin-bottom: 90px;
}

.plants-heading > span {
    font-size: 10px;
    letter-spacing: 2px;
    color: #71806b;
}

.plants-heading h2 {
    margin-top: 25px;

    font-family: "Fraunces", serif;
    font-size: clamp(55px, 8vw, 110px);
    font-weight: 400;
    line-height: 0.9;
    letter-spacing: -4px;
}

.plants-heading h2 em {
    color: #718b65;
    font-style: italic;
}

.plants-heading p {
    max-width: 380px;
    margin-top: 35px;

    font-size: 14px;
    line-height: 1.7;
    color: #687366;
}


/* EXPLORER */

.plant-explorer {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 70px;
    align-items: start;
}

.plant-list {
    border-top: 1px solid #cdd1bd;
}

.plant-item {
    width: 100%;
    padding: 25px 5px;

    display: grid;
    grid-template-columns: 45px 1fr;
    text-align: left;

    border: none;
    border-bottom: 1px solid #cdd1bd;

    background: transparent;
    color: #243326;

    cursor: pointer;

    transition:
        padding-left 0.3s ease,
        background 0.3s ease;
}

.plant-item span {
    font-size: 10px;
    color: #87927e;
}

.plant-item strong {
    font-family: "Fraunces", serif;
    font-size: 22px;
    font-weight: 400;
}

.plant-item small {
    grid-column: 2;

    margin-top: 7px;

    font-size: 10px;
    color: #87927e;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.plant-item:hover,
.plant-item.active {
    padding-left: 18px;
    background: #e8ead9;
}


/* DETAIL */

.plant-detail {
    display: grid;
    grid-template-columns: 0.9fr 1fr;
    min-height: 480px;

    background: #344a32;
    color: #f5f2e8;
}

.plant-detail-image {
    min-height: 480px;

    background:
        linear-gradient(
            to bottom,
            transparent 50%,
            rgba(10, 25, 12, 0.35)
        ),
        url("https://images.unsplash.com/photo-1614594975525-e45190c55d0b?auto=format&fit=crop&w=1000&q=85")
        center / cover;

    transition: background-image 0.5s ease;
}

.plant-detail-info {
    padding: 55px 45px;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.plant-detail-info > span {
    font-size: 9px;
    letter-spacing: 2px;
    color: #b6c5a9;
}

.plant-detail-info h3 {
    margin-top: 18px;

    font-family: "Fraunces", serif;
    font-size: clamp(38px, 4vw, 60px);
    font-weight: 400;
    line-height: 0.95;
}

.plant-detail-info > p {
    max-width: 340px;
    margin-top: 25px;

    font-size: 13px;
    line-height: 1.8;
    color: #d2d8c9;
}

.plant-meta {
    display: flex;
    gap: 45px;
    margin-top: 45px;
}

.plant-meta div {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.plant-meta small {
    font-size: 8px;
    letter-spacing: 2px;
    color: #9eaf94;
}

.plant-meta strong {
    font-size: 11px;
    font-weight: 500;
}
/* GROWTH LAB */

.growth-section {
    min-height: 100vh;
    padding: 150px 5vw;

    background: #dce3cf;
    color: #243326;
}

.growth-intro {
    max-width: 700px;
    margin-bottom: 90px;
    display: block;
    opacity: 1;
    visibility: visible;
    position: relative;
    z-index: 10;
    color: #243326;
}


.growth-intro > span {
    font-size: 10px;
    letter-spacing: 2px;
    color: #71806b;
}

.growth-intro h2 {
    margin-top: 25px;

    font-family: "Fraunces", serif;
    font-size: clamp(60px, 8vw, 115px);
    font-weight: 400;
    line-height: 0.88;
    letter-spacing: -4px;
}

.growth-intro h2 em {
    color: #607b58;
    font-style: italic;
}

.growth-intro p {
    max-width: 350px;
    margin-top: 35px;

    font-size: 14px;
    line-height: 1.7;
    color: #657161;
}


/* LAB */

.growth-lab {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    min-height: 520px;

    background: #f5f2e8;
    overflow: hidden;
}


/* PLANT AREA */

.growth-stage {
    position: relative;

    min-height: 520px;

    display: flex;
    align-items: flex-end;
    justify-content: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 50% 65%,
            rgba(108, 139, 91, 0.2),
            transparent 35%
        ),
        #eef0df;
}

.stage-label {
    position: absolute;
    top: 30px;
    left: 30px;

    font-size: 9px;
    letter-spacing: 2px;

    color: #6c7d66;
}


/* PLANT */

.plant-growth {
    position: relative;

    width: 260px;
    height: 400px;

    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.pot {
    position: absolute;
    bottom: 25px;

    width: 100px;
    height: 85px;

    background: #b87858;

    clip-path: polygon(
        10% 0,
        90% 0,
        78% 100%,
        22% 100%
    );

    z-index: 3;
}

.stem {
    position: absolute;
    bottom: 95px;

    width: 10px;
    height: 250px;

    background: #536e4d;

    transform-origin: bottom;

    transform: scaleY(1);

    transition:
        height 0.7s ease,
        transform 0.7s ease;
}


/* LEAVES */

.leaf {
    position: absolute;

    width: 75px;
    height: 42px;

    background: #6f8d62;

    border-radius: 100% 0 100% 0;

    transform: scale(0);

    transition:
        transform 0.5s ease;
}

.leaf-left {
    left: -62px;
    top: 90px;

    transform-origin: right bottom;
}

.leaf-right {
    right: -62px;
    top: 135px;

    transform-origin: left bottom;
}

.leaf-top {
    left: -32px;
    top: 15px;

    width: 65px;
    height: 65px;

    border-radius: 100% 0 100% 0;
}


/* GROUND */

.growth-ground {
    position: absolute;
    bottom: 25px;

    width: 360px;
    height: 1px;

    background: #c6cdbb;
}


/* CONTROLS */

.growth-controls {
    padding: 60px 50px;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.growth-header {
    display: flex;
    justify-content: space-between;

    font-size: 9px;
    letter-spacing: 2px;

    color: #71806b;
}

.growth-header strong {
    font-weight: 500;
    color: #243326;
}


/* SLIDER */

#growthSlider {
    width: 100%;
    margin-top: 45px;

    appearance: none;
    height: 2px;

    background: #b9c2ae;

    outline: none;
}

#growthSlider::-webkit-slider-thumb {
    appearance: none;

    width: 22px;
    height: 22px;

    border-radius: 50%;

    background: #243326;

    cursor: pointer;

    border: 5px solid #f5f2e8;
    box-shadow: 0 0 0 1px #243326;
}

.growth-stages {
    display: flex;
    justify-content: space-between;

    margin-top: 18px;

    font-size: 8px;
    letter-spacing: 1.5px;

    color: #8a9484;
}

.growth-controls > p {
    max-width: 330px;

    margin-top: 70px;

    font-family: "Fraunces", serif;
    font-size: 25px;
    line-height: 1.2;

    color: #53634e;
}


/* MOBILE */

@media (max-width: 900px) {

    .growth-lab {
        grid-template-columns: 1fr;
    }

    .growth-stage {
        min-height: 430px;
    }

    .growth-controls {
        padding: 45px 30px;
    }

}
/* BOTANICAL JOURNAL */

.journal-section {
    padding: 160px 5vw;
    background: #f5f2e8;
}

.journal-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;

    margin-bottom: 120px;
}

.journal-header > span {
    font-size: 10px;
    letter-spacing: 2px;
    color: #71806b;
}

.journal-header h2 {
    width: 60%;

    font-family: "Fraunces", serif;
    font-size: clamp(55px, 7vw, 100px);
    font-weight: 400;
    line-height: 0.9;
    letter-spacing: -4px;
}

.journal-header h2 em {
    color: #718b65;
    font-style: italic;
}

.journal-list {
    border-top: 1px solid #cdd1bd;
}

.journal-item {
    position: relative;

    display: grid;
    grid-template-columns: 60px 0.9fr 1fr;
    gap: 50px;
    align-items: center;

    min-height: 470px;

    padding: 55px 0;

    border-bottom: 1px solid #cdd1bd;
}

.journal-number {
    align-self: flex-start;

    font-size: 10px;
    letter-spacing: 2px;
    color: #87927e;
}

.journal-image {
    width: 100%;
    height: 360px;

    background-position: center;
    background-size: cover;

    transition: transform 0.6s ease;
}

.journal-item:hover .journal-image {
    transform: scale(0.97);
}

.journal-one {
    background-image:
        url("https://images.unsplash.com/photo-1497250681960-ef046c08a56e?auto=format&fit=crop&w=900&q=85");
}

.journal-two {
    background-image:
        url("https://images.unsplash.com/photo-1501004318641-b39e6451bec6?auto=format&fit=crop&w=900&q=85");
}

.journal-three {
    background-image:
        url("https://images.unsplash.com/photo-1441974231531-c6227db76b6e?auto=format&fit=crop&w=900&q=85");
}

.journal-content {
    max-width: 400px;
}

.journal-content > span {
    font-size: 9px;
    letter-spacing: 2px;
    color: #71806b;
}

.journal-content h3 {
    margin-top: 22px;

    font-family: "Fraunces", serif;
    font-size: clamp(38px, 4vw, 58px);
    font-weight: 400;
    line-height: 0.95;
}

.journal-content p {
    margin-top: 25px;

    max-width: 300px;

    font-size: 13px;
    line-height: 1.7;
    color: #687366;
}

.journal-content a {
    display: inline-block;

    margin-top: 30px;

    color: #243326;
    text-decoration: none;

    border-bottom: 1px solid #718b65;
    padding-bottom: 7px;

    font-size: 12px;
}

.journal-reverse {
    grid-template-columns: 60px 1fr 0.9fr;
}

.journal-reverse .journal-image {
    order: 3;
}

.journal-reverse .journal-content {
    order: 2;
}
@media (max-width: 900px) {

    .journal-header {
        display: block;
    }

    .journal-header h2 {
        width: 100%;
        margin-top: 30px;
    }

    .journal-item,
    .journal-reverse {
        grid-template-columns: 35px 1fr;
        gap: 20px;
    }

    .journal-image,
    .journal-reverse .journal-image {
        grid-column: 2;
        order: 1;
        height: 330px;
    }

    .journal-content,
    .journal-reverse .journal-content {
        grid-column: 2;
        order: 2;
    }
}
/* JOURNAL POSITION FIX */

.journal-item {
    position: relative;
}

.journal-content {
    position: relative;
    z-index: 2;
    color: #243326;
}

.journal-content h3 {
    color: #243326;
}

.journal-content p {
    color: #687366;
}

.journal-content a {
    color: #243326;
}

.journal-reverse .journal-content {
    order: 2;
}

.journal-reverse .journal-image {
    order: 3;
}
/* ===== MORI JOURNAL FINAL FIX ===== */

.journal-section {
    width: 100%;
    padding: 140px 5vw;
    background: #f5f2e8;
    overflow: hidden;
}

.journal-header {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 50px;
    margin-bottom: 90px;
}

.journal-header > span {
    display: block;
    font-family: "Manrope", sans-serif;
    font-size: 10px;
    letter-spacing: 2px;
    color: #71806b;
}

.journal-header h2 {
    width: 100%;
    margin: 0;
    font-family: "Fraunces", serif;
    font-size: clamp(55px, 7vw, 100px);
    font-weight: 400;
    line-height: .9;
    letter-spacing: -4px;
    color: #243326;
}

.journal-header h2 em {
    color: #718b65;
    font-style: italic;
}


/* EACH ARTICLE */

.journal-list {
    width: 100%;
    border-top: 1px solid #cdd1bd;
}

.journal-item {
    width: 100%;
    min-height: 500px;

    display: grid;
    grid-template-columns: 50px minmax(300px, 1fr) minmax(300px, 1fr);
    gap: 50px;
    align-items: center;

    padding: 60px 0;

    border-bottom: 1px solid #cdd1bd;
}

.journal-number {
    align-self: start;
    padding-top: 5px;

    font-family: "Manrope", sans-serif;
    font-size: 10px;
    letter-spacing: 2px;
    color: #87927e;
}


/* IMAGE */

.journal-image {
    width: 100%;
    height: 380px;

    display: block;

    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    transition: transform .5s ease;
}

.journal-item:hover .journal-image {
    transform: scale(.97);
}

.journal-one {
    background-image: url("https://images.unsplash.com/photo-1497250681960-ef046c08a56e?auto=format&fit=crop&w=1000&q=85");
}

.journal-two {
    background-image: url("https://images.unsplash.com/photo-1501004318641-b39e6451bec6?auto=format&fit=crop&w=1000&q=85");
}

.journal-three {
    background-image: url("https://images.unsplash.com/photo-1441974231531-c6227db76b6e?auto=format&fit=crop&w=1000&q=85");
}


/* TEXT */

.journal-content {
    width: 100%;
    max-width: 420px;

    display: flex;
    flex-direction: column;

    color: #243326;
}

.journal-content > span {
    display: block;

    font-family: "Manrope", sans-serif;
    font-size: 9px;
    letter-spacing: 2px;

    color: #71806b;
}

.journal-content h3 {
    display: block;

    margin: 20px 0 0;

    font-family: "Fraunces", serif;
    font-size: clamp(38px, 4vw, 58px);
    font-weight: 400;
    line-height: .95;

    color: #243326;
}

.journal-content p {
    display: block;

    max-width: 320px;
    margin: 25px 0 0;

    font-family: "Manrope", sans-serif;
    font-size: 13px;
    line-height: 1.7;

    color: #687366;
}

.journal-content a {
    display: inline-block;
    width: fit-content;

    margin-top: 30px;
    padding-bottom: 7px;

    border-bottom: 1px solid #718b65;

    font-family: "Manrope", sans-serif;
    font-size: 12px;

    color: #243326;
    text-decoration: none;
}


/* SECOND ARTICLE — IMAGE ON RIGHT */

.journal-reverse {
    grid-template-columns: 50px minmax(300px, 1fr) minmax(300px, 1fr);
}

.journal-reverse .journal-content {
    grid-column: 2;
    grid-row: 1;
}

.journal-reverse .journal-image {
    grid-column: 3;
    grid-row: 1;
}


/* MOBILE */

@media (max-width: 900px) {

    .journal-section {
        padding: 100px 6vw;
    }

    .journal-header {
        display: block;
    }

    .journal-header h2 {
        margin-top: 30px;
    }

    .journal-item,
    .journal-reverse {
        display: grid;
        grid-template-columns: 35px 1fr;
        gap: 20px;
        padding: 45px 0;
    }

    .journal-number {
        grid-column: 1;
        grid-row: 1;
    }

    .journal-image,
    .journal-reverse .journal-image {
        grid-column: 2;
        grid-row: 1;
        height: 330px;
    }

    .journal-content,
    .journal-reverse .journal-content {
        grid-column: 2;
        grid-row: 2;
        max-width: 100%;
        padding-top: 25px;
    }
}