/* =========================================================
   GLOBAL
========================================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: #30352a;
    font-family: "DM Sans", sans-serif;
    background: #eee5d7;
}

a {
    text-decoration: none;
    color: inherit;
}


/* =========================================================
   HERO SECTION
========================================================= */

.hero {
    min-height: 100vh;
    position: relative;
    color: #fff;
    overflow: hidden;

    background: url("assets/slide1.jpg") center / cover no-repeat;
}


/* Hero Overlay */

.hero-overlay {
    position: absolute;
    inset: 0;

    background: linear-gradient(
        90deg,
        rgba(20, 18, 12, 0.18),
        rgba(12, 13, 9, 0.72)
    );
}


/* =========================================================
   NAVBAR
========================================================= */

/* =========================================================
   HEADER / NAVBAR
========================================================= */

.navbar {
    position: fixed;
    top: 0;
    left: 0;

    z-index: 20;

    width: 100%;
    height: 125px;

    display: flex;
    align-items: center;

    padding: 0 5%;
}


/* =========================================================
   LOGO
========================================================= */

.brand-logo {
    position: relative;

    display: flex;
    align-items: center;

    width: 250px;

    z-index: 21;
}

.brand-logo img {
    display: block;

    width: 230px;
    height: auto;

    object-fit: contain;
}


/* =========================================================
   NAVIGATION
========================================================= */

.nav-links {
    position: absolute;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 48px;

    white-space: nowrap;
}


/* MENU */

.nav-links a {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    color: #fff;

    font-family: "DM Sans", sans-serif;

    font-size: 15px;
    line-height: 1.15;
    font-weight: 500;

    transition: color 0.3s ease;
}


/* HOVER */

.nav-links a:hover {
    color: rgba(255, 255, 255, 0.75);
}


/* ACTIVE MENU */

.nav-links a.active::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: -13px;

    width: 42px;
    height: 2px;

    transform: translateX(-50%);

    background: #40543a;
}


/* =========================================================
   HERO CONTENT
========================================================= */

.hero-content {
    position: relative;
    z-index: 2;

    margin: 105px 0 0 7%;

    max-width: 700px;
}


/* Small Label */

.eyebrow {
    display: inline-block;

    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 700;

    padding: 10px 18px;
    margin-bottom: 25px;

    border-radius: 30px;

    background: rgba(247, 241, 226, 0.16);
}


/* Main Heading */

.hero h1 {
    font-family: "Cormorant Garamond", serif;
    font-weight: 500;

    font-size: clamp(62px, 6.5vw, 96px);

    line-height: 0.87;
    letter-spacing: -2px;

    margin: 0;
}


/* Heading Highlight */

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


/* Decorative Leaf */

.leaf-line {
    font-size: 38px;

    margin: 4px 0 2px;

    color: #dce3c9;
}


/* Hero Description */

.hero-content p {
    font-size: 17px;
    line-height: 1.7;

    margin-top: 8px;

    max-width: 670px;
}


/* =========================================================
   HERO CALLOUT
========================================================= */

.hero-callout {
    position: absolute;
    z-index: 2;

    left: 7%;
    right: auto;
    top: 64%;

    max-width: 340px;

    padding: 18px 22px;

    display: flex;
    gap: 12px;

    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 10px;

    background: rgba(20, 20, 15, 0.28);
}


.hero-callout h3 {
    font-family: "Cormorant Garamond", serif;

    font-size: 20px;

    margin: 0 0 12px;
}


.hero-callout p {
    font-size: 13px;
    line-height: 1.6;

    margin: 0;
}


.callout-icon {
    font-size: 25px;
}


/* =========================================================
   FEATURE BAR
========================================================= */

.feature-bar {
    position: absolute;
    z-index: 3;

    left: 2.5%;
    right: 2.5%;
    bottom: 38px;

    display: grid;
    grid-template-columns: repeat(4, 1fr);

    padding: 18px 20px;

    color: #2d3128;

    border-radius: 2px;

    background: rgba(255, 255, 255, 0.86);
}


.feature-bar article {
    display: flex;
    gap: 12px;

    padding: 0 18px;

    border-right: 1px solid rgba(50, 50, 40, 0.12);
}


.feature-bar article:last-child {
    border: 0;
}


/* Feature Icons */

.feature-bar .icon {
    width: 56px;
    height: 56px;

    flex: 0 0 56px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: #f1ecdf;

    font-size: 27px;
    color: #45563a;
}


/* Feature Title */

.feature-bar h3 {
    font-family: "Cormorant Garamond", serif;

    font-size: 20px;
    line-height: 1.05;

    margin: 1px 0 2px;
}


/* Feature Description */

.feature-bar p {
    font-size: 12px;
    line-height: 1.5;

    margin: 0;
}


/* =========================================================
   GENERAL LIGHT SECTION
========================================================= */

.section-light {
    background: #eee5d7;
}


/* =========================================================
   JOURNEY SECTION
========================================================= */

.journey {
    position: relative;

    padding: 90px 7% 75px;

    overflow: hidden;
}


/* Coffee Decoration */

.coffee-decoration {
    position: absolute;

    right: 3%;
    top: 15px;

    font-size: 130px;

    opacity: 0.25;
}


/* Section Heading */

.section-heading {
    position: relative;

    text-align: center;
}


/* Script Heading */

.script {
    font-family: "Allura", cursive;

    font-size: 34px;

    color: #4b543c;
}


/* Main Section Heading */

.section-heading h2 {
    font-family: "Cormorant Garamond", serif;

    font-size: 54px;
    font-weight: 500;

    margin: 0;

    color: #30352a;
}


.section-heading p {
    font-size: 13px;
    line-height: 1.45;
}


/* =========================================================
   JOURNEY STEPS
========================================================= */

.steps {
    display: grid;

    grid-template-columns: repeat(5, 1fr);

    gap: 24px;

    margin-top: 40px;
}


.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}


/* Step Number + Icon */

.step-top {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 15px;
}


.step-top > span {
    width: 25px;
    height: 25px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: #40543a;

    color: #fff;

    font-size: 12px;
    font-weight: 700;
}


/* Round Icon */

.round-icon {
    width: 62px;
    height: 62px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: #faf5eb;

    font-size: 27px;
}


/* Step Title */

.step h3 {
    text-align: center;

    color: #40543a;

    font-size: 19px;

    margin: 10px 0;
}


/* Step Image */

.step-image {
    width: 100%;

    height: 160px;

    border-radius: 14px;

    background-size: cover;
    background-position: center;
}


/* Journey Images */

.img-1 {
    background-image: url("assets/journey1.jpeg");
}

.img-2 {
    background-image: url("assets/journey2.png");
}

.img-3 {
    background-image: url("assets/journey3.png");
}

.img-4 {
    background-image: url("assets/journey4.png");
}

.img-5 {
    background-image: url("assets/journey5.png");
}


/* Step Description */

.step p {
    width: 100%;
    max-width: 280px;
    font-size: 13px;
    line-height: 1.5;

    margin: 12px auto 0;
    text-align: center;
}


/* =========================================================
   VALUE SECTION
========================================================= */

.value {
    display: grid;

    grid-template-columns: 1.2fr 0.95fr 0.9fr;

    gap: 35px;

    padding: 95px 3.5% 75px;
}


/* Value Main Heading */

.leaf-title {
    font-family: "Cormorant Garamond", serif;

    font-size: 57px;
    line-height: 1;

    color: #40543a;
}


/* Value Description */

.value-left > p,
.value-middle > p {
    font-size: 16px;
    line-height: 1.7;
}


/* =========================================================
   PRODUCT CARD
========================================================= */

.product-card {
    display: flex;
    align-items: center;

    gap: 20px;

    margin-top: 25px;
}


/* Product Placeholder */

.product-placeholder {
    width: 210px;
    height: 260px;

    display: grid;
    place-items: center;

    background: #c9b18d;

    color: #514128;

    text-align: center;

    font-size: 19px;
    font-weight: 700;

    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}


/* Product Description Box */

.product-card > div:last-child {
    background: #e7ebdd;

    padding: 22px;
}


.product-card h3 {
    font-size: 18px;

    margin: 0;
}


.product-card p {
    font-size: 14px;
    line-height: 1.5;
}


/* =========================================================
   VALUE MIDDLE
========================================================= */

.value-middle h3 {
    font-size: 23px;

    margin: 0;
}


.mini-line {
    font-size: 28px;

    color: #40543a;
}


.value-middle ul {
    list-style: none;

    padding: 0;

    margin-top: 35px;
}


.value-middle li {
    display: flex;

    gap: 14px;

    margin: 22px 0;

    font-size: 16px;
    font-weight: 700;
}


/* Value Image */

.value-photo {
    min-height: 550px;

    border-radius: 35px;

    background: url("assets/slide3.jpg") center / cover no-repeat;
}


/* =========================================================
   IMPACT SECTION
========================================================= */

.impact {
    position: relative;

    min-height: 720px;

    padding: 95px 7%;

    overflow: hidden;

    color: #fff;

    background: url("assets/slide4.jpg") center / cover no-repeat;
}


/* Impact Overlay */

.impact-overlay {
    position: absolute;
    inset: 0;

    background: rgba(25, 31, 16, 0.48);
}


/* Impact Elements */

.impact-title,
.impact-subtitle,
.impact-grid,
.impact-script {
    position: relative;

    z-index: 1;
}


/* Impact Title */

.impact-title {
    font-family: "Cormorant Garamond", serif;

    font-size: 52px;
    font-weight: 600;
}


.impact-subtitle {
    font-size: 17px;

    margin-top: 4px;
}


/* =========================================================
   IMPACT GRID
========================================================= */

.impact-grid {
    display: grid;

    grid-template-columns: 1fr 150px 1fr;

    max-width: 900px;

    margin: 55px auto 0;

    align-items: center;
}


/* Impact Card */

.impact-card {
    min-height: 350px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    padding: 40px;

    border-radius: 28px;

    border: 1px solid rgba(255, 255, 255, 0.05);

    background: rgba(50, 55, 24, 0.48);
}


.impact-card h3 {
    text-align: center;

    font-size: 22px;

    margin: 0;
}


.impact-number {
    font-size: 75px;

    text-align: center;
}


.impact-card p {
    font-size: 19px;
}


/* Impact Arrow */

.impact-arrow {
    text-align: center;

    font-size: 18px;
}


.impact-arrow b {
    display: block;

    font-size: 70px;
    line-height: 1;
}


/* Impact Script */

.impact-script {
    font-family: "Allura", cursive;

    text-align: center;

    font-size: 42px;

    margin-top: 35px;
}


/* =========================================================
   CONTACT SECTION
========================================================= */

.contact {
    position: relative;

    min-height: 760px;

    padding: 150px 6%;

    color: #fff;

    background: url("assets/slide1.jpg") center / cover no-repeat;
}


/* Contact Overlay */

.contact-overlay {
    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, 0.58);
}


/* Contact Inner */

.contact-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 2px 1.5fr;
    align-items: center;
    gap: 55px;
}


/* Contact Left */

.contact-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}


/* Contact Label */

.contact-label {
    font-size: 43px;
    margin-bottom: 34px;
}


/* Contact Information */

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    color: #fff;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.contact-item:hover {
    opacity: 0.82;
    transform: translateX(4px);
}

.contact-icon {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon svg {
    width: 100%;
    height: 100%;
}

.location-icon {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
}

.instagram-icon {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
}

.contact-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 17px;
    line-height: 1.45;
}

.contact-text strong {
    font-weight: 500;
}


/* Divider */

.contact-divider {
    height: 360px;

    background: #fff;
}


/* Contact Text */

.contact-copy h2 {
    font-size: 43px;
    line-height: 1.25;
    font-weight: 400;

    margin: 0;
}


.contact-copy h2 span {
    font-family: "Allura", cursive;

    font-size: 67px;
}


.contact-copy p {
    font-size: 19px;

    margin-top: 30px;
}


/* Visit Button */

.visit-button {
    position: absolute;

    z-index: 2;

    left: 50%;
    bottom: 28px;

    transform: translateX(-50%);

    padding: 15px 45px;

    border: 2px solid #fff;

    border-radius: 40px;

    font-size: 18px;

    white-space: nowrap;
}


/* =========================================================
   TABLET RESPONSIVE
========================================================= */

@media (max-width: 900px) {

    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 110px;
        padding: 0 4%;
    }

    .brand-logo {
        width: 150px;
    }

    .brand-logo img {
        width: 145px;
        height: auto;
    }

    .nav-links {
        position: absolute;
        top: 50%;
        right: 4%;
        left: auto;

        transform: translateY(-50%);

        display: flex;
        align-items: center;
        justify-content: flex-end;

        gap: 18px;
        margin: 0;

        white-space: nowrap;
    }

    .nav-links a {
        font-size: 11px;
        line-height: 1.1;
    }

    .nav-links a.active::after {
        bottom: -8px;
        width: 25px;
        height: 1.5px;
    }

    .hero-content {
        margin: 90px 5% 0;
    }

    .hero-callout {
        display: flex;
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        margin: 30px 5% 0;
        max-width: 340px;
    }

    .feature-bar {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;

        margin: 70px 5% 25px;

        grid-template-columns: 1fr 1fr;
    }

    .feature-bar article {
        padding: 15px;
    }

    .hero {
        min-height: 100vh;
    }

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

    .value {
        grid-template-columns: 1fr;
        padding: 65px 7%;
    }

    .value-photo {
        min-height: 400px;
    }

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

    .impact-arrow {
        margin: 15px;
    }

    .impact-card {
        min-height: 240px;
    }

    .contact-inner {
        grid-template-columns: 1fr;
    }

    .contact-divider {
        width: 100%;
        height: 2px;
    }

    .contact {
        padding: 100px 7%;
    }

    .contact-copy h2 {
        font-size: 34px;
    }

    .contact-copy h2 span {
        font-size: 52px;
    }
}


/* =========================================================
   MOBILE RESPONSIVE
========================================================= */

@media (max-width: 600px) {

    /* HEADER */

    .navbar {
        position: fixed;
        top: 0;
        left: 0;

        width: 100%;
        height: 135px;

        display: flex;
        flex-direction: column;
        align-items: center;

        padding: 15px 12px 0;
    }

    .brand-logo {
        width: 200px;
        height: auto;

        display: flex;
        justify-content: center;
        align-items: center;

        margin-bottom: 0;
    }

    .brand-logo img {
        display: block;

        width: 200px;
        height: auto;

        object-fit: contain;
    }

    .nav-links {
        position: static;

        width: 100%;

        display: flex;
        align-items: center;
        justify-content: center;

        flex-wrap: wrap;

        gap: 8px 14px;

        margin: 0;
        padding: 0 5px;

        transform: none;

        white-space: normal;
    }

    .nav-links a {
        position: relative;

        display: inline-flex;
        align-items: center;
        justify-content: center;

        text-align: center;

        color: #fff;

        font-family: "DM Sans", sans-serif;

        font-size: 10px;
        line-height: 1.1;
        font-weight: 500;

        padding: 3px 2px;
    }

    .nav-links a.active::after {
        bottom: -5px;
        width: 20px;
        height: 1px;
        background: #fff;
    }


    /* HERO */

    .hero {
        min-height: 100vh;
        padding-top: 1px;
    }

    /*
       Hero content dibuat terpisah dari navbar.
       Jadi "SETIAP CANGKIR PUNYA CERITA" tetap menjadi
       bagian dari section Hero, bukan terlihat seperti menu/header.
    */
    .hero-content {
        margin: 0 5%;
        padding-top: 300px;
        position: relative;
        z-index: 2;
    }

    .eyebrow {
        margin-top: 0;
        margin-bottom: 22px;
    }

    .hero h1 {
        font-size: 58px;
        line-height: 0.9;
    }

    .hero-content p {
        font-size: 14px;
        line-height: 1.6;
    }

    .hero-callout {
        display: flex;
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        margin: 28px 5% 0;
        max-width: 340px;
        padding: 16px 18px;
    }


    /* FEATURE BAR */

    .feature-bar {
        position: relative;

        left: auto;
        right: auto;
        bottom: auto;

        grid-template-columns: 1fr;

        margin: 45px 5% 25px;
    }

    .feature-bar article {
        padding: 15px;

        border-right: 0;
        border-bottom: 1px solid rgba(50, 50, 40, 0.12);
    }

    .feature-bar article:last-child {
        border-bottom: 0;
    }


    /* JOURNEY */

    .section-heading h2 {
        font-size: 42px;
    }

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

    .step-image {
        height: 220px;
    }


    /* VALUE */

    .value {
        grid-template-columns: 1fr;
        padding: 65px 7%;
    }

    .leaf-title {
        font-size: 48px;
    }

    .product-card {
        flex-direction: column;
        align-items: stretch;
    }

    .product-placeholder {
        width: 100%;
        height: 220px;
    }

    .value-photo {
        min-height: 400px;
    }


    /* IMPACT */

    .impact {
        padding: 75px 5%;
    }

    .impact-title {
        font-size: 42px;
    }

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

    .impact-arrow {
        margin: 15px;
    }

    .impact-card {
        min-height: 240px;
    }

    .impact-script {
        font-size: 32px;
    }


    /* CONTACT */

    .contact {
        padding: 100px 7%;
    }

    .contact-inner {
        grid-template-columns: 1fr;
    }

    .contact-divider {
        width: 100%;
        height: 2px;
    }

    .contact-copy h2 {
        font-size: 34px;
    }

    .contact-copy h2 span {
        font-size: 52px;
    }

    .visit-button {
        padding: 13px 28px;
        font-size: 15px;
    }
}


/* =========================================================
   CONTACT INFO RESPONSIVE OVERRIDES
========================================================= */
@media (max-width: 900px) {
    .contact-left {
        align-items: flex-start;
    }
}

@media (max-width: 600px) {
    .contact-label {
        font-size: 36px;
        margin-bottom: 25px;
    }

    .contact-info {
        gap: 20px;
    }

    .contact-icon {
        width: 36px;
        height: 36px;
        flex-basis: 36px;
    }

    .location-icon {
        width: 40px;
        height: 40px;
        flex-basis: 40px;
    }

    .contact-text {
        font-size: 14px;
    }
}
/* =========================================================
   PRODUCT IMAGE SIZE FIX
   Hanya memperbaiki ukuran gambar produk agar tidak terlalu besar.
========================================================= */
.product-image {
    width: 230px;
    flex: 0 0 230px;

    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.product-image img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 320px;
    object-fit: contain;
}
@media (max-width: 600px) {
    .product-image {
        width: 220px;
        max-width: 100%;
        flex: 0 0 auto;
        margin: 0 auto;
    }

    .product-image img {
        width: 100%;
        max-height: 280px;
    }
}

/* UPDATE TERAKHIR - CENTER & PUTIH */
.impact-last-update {
    width: 100%;
    margin-top: 30px;
    text-align: center;
    color: #ffffff;
    position: relative;
    z-index: 1;
}

.impact-last-update span {
    color: #ffffff;
}

.brand-text span {
    white-space: nowrap;
}