:root {
    --green: #1E2A18;         /* Hijau hutan gelap yang mewah (Deep Forest) */
    --cream: #FAF6EB;         /* Krem lembut premium */
    --gold: #C5A872;          /* Emas redup (Muted Gold) khas produk luxury */
    --brown: #7A5335;
    --white: #FFFFFF;
    --line-color: rgba(30, 42, 24, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background: var(--cream);
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--cream);
    color: var(--green);
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
}

/* --- TATA LETAK SECTION UTAMA --- */
section {
    padding: 140px 10%;
    border-bottom: 1px solid var(--line-color);
    position: relative;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

p {
    font-size: 1.05rem;
    font-weight: 300;
    color: rgba(30, 42, 24, 0.8);
}

/* --- OPENING (Nuansa Zen / Kosong) --- */
.intro {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
    background: var(--cream);
}

.intro-content {
    max-width: 650px;
}

.intro p {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 5px;
}

.intro h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    line-height: 1.3;
    color: var(--green);
    margin: 25px 0 60px 0;
    font-weight: 400;
}

.btn-story {
    display: inline-block;
    text-decoration: none;
    color: var(--green);
    border: 1px solid var(--green);
    padding: 18px 38px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 500;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-story:hover {
    background: var(--green);
    color: var(--cream);
    letter-spacing: 0.25em;
}

/* --- SECTION GIGITAN PERTAMA (GRID KANAN KIRI) --- */
.chapter {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
    background: var(--white);
}

.image-placeholder {
    width: 100%;
    height: 520px;
    background: #EBE4CD;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    color: rgba(30, 42, 24, 0.4);
    border: 1px solid var(--line-color);
    position: relative;
}

.image-placeholder::after {
    content: '';
    position: absolute;
    top: 15px; left: 15px; width: 100%; height: 100%;
    border: 1px solid var(--gold);
    z-index: -1;
    opacity: 0.5;
}

.story-text h2 {
    margin-bottom: 30px;
    position: relative;
}

.highlight {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    line-height: 1.4;
    color: var(--green);
    margin-top: 40px;
    border-top: 1px solid var(--line-color);
    padding-top: 30px;
}

/* --- CERITA YANG HAMPIR DILUPAKAN (DARK) --- */
.dark-section {
    background: var(--green);
    color: var(--cream);
    text-align: left;
    padding: 160px 15%;
}

.dark-section h2 {
    color: var(--gold);
    margin-bottom: 40px;
}

.dark-section p {
    color: rgba(250, 246, 235, 0.6);
    font-size: 1.2rem;
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}

.dark-section h3 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    line-height: 1.3;
    margin: 50px 0;
    font-weight: 400;
    max-width: 600px;
    border-left: 2px solid var(--gold);
    padding-left: 25px;
}

.big-text {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    color: var(--cream);
    font-style: italic;
    margin-top: 60px;
    border-top: 1px solid rgba(250, 246, 235, 0.1);
    padding-top: 30px;
}

/* --- MISSION SECTION --- */
.mission {
    text-align: center;
    max-width: 750px;
    margin: 0 auto;
    padding: 160px 40px;
}

.mission h2 {
    font-size: 0.85rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gold);
    margin-bottom: 40px;
}

.mission p:nth-of-type(1) {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 2.8vw, 2.3rem);
    line-height: 1.4;
    color: var(--green);
    margin-bottom: 50px;
}

.mission p:nth-of-type(2) {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--brown);
}

/* --- TRANSFORMATION SECTION --- */
.transformation {
    text-align: center;
    background: var(--white);
    padding: 140px 40px;
}

.old, .new {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    display: inline-block;
}

.old {
    color: rgba(30, 42, 24, 0.3);
    font-weight: 400;
}

.new {
    color: var(--green);
    font-weight: 700;
}

.arrow {
    font-size: 2.5rem;
    color: var(--gold);
    margin: 20px 0;
    font-weight: 300;
}

.transformation p {
    max-width: 550px;
    margin: 30px auto 0 auto;
}

.transformation p:nth-of-type(1) {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.5rem;
    color: var(--gold);
    border-top: 1px solid var(--line-color);
    padding-top: 30px;
}

/* --- INGREDIENTS SECTION --- */
.ingredients {
    background: var(--cream);
}

.ingredients h2 {
    text-align: center;
    margin-bottom: 70px;
}

.ingredient-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.card {
    background: var(--white);
    padding: 45px 35px;
    border-radius: 0px; 
    box-shadow: none;
    border: 1px solid var(--line-color);
    transition: transform 0.4s ease, border-color 0.4s ease;
}

.card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.card span {
    font-size: 1.8rem;
    display: block;
    margin-bottom: 20px;
}

.card h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
    color: var(--green);
    letter-spacing: -0.01em;
}

.card p {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* --- MENU SECTION --- */
.menu {
    background: var(--green);
    color: var(--cream);
}

.menu h2 {
    text-align: center;
    color: var(--cream);
    margin-bottom: 60px;
}

.menu-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-bottom: 60px;
}

.menu-card {
    background: transparent;
    padding: 40px;
    border-radius: 0px;
    border: 1px solid rgba(250, 246, 235, 0.12);
    width: 380px;
    transition: all 0.4s ease;
}

.menu-card:hover {
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.02);
}

.menu-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--cream);
}

.menu-card p {
    font-size: 0.95rem;
    color: rgba(250, 246, 235, 0.65);
}

.menu-card span {
    display: block;
    margin-top: 30px;
    font-size: 1.4rem;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
}

.cta-button {
    display: block;
    width: max-content;
    margin: 0 auto;
    text-decoration: none;
    background: var(--gold);
    color: var(--green);
    padding: 18px 50px;
    border-radius: 0px;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transition: all 0.4s ease;
}

.cta-button:hover {
    background: var(--cream);
    color: var(--green);
}

/* --- TESTIMONIAL --- */
.testimonial {
    background: var(--cream);
}

.testimonial h2 {
    text-align: center;
    margin-bottom: 50px;
}

.quote {
    background: var(--white);
    padding: 45px;
    border-radius: 0px;
    margin: 25px 0;
    border-top: 1px solid var(--line-color);
    border-right: 1px solid var(--line-color);
    border-bottom: 1px solid var(--line-color);
    border-left: 3px solid var(--gold); 
    font-style: italic;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--green);
}

.quote strong {
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold);
    display: block;
    margin-top: 20px;
}

/* --- EMOTIONAL FULL VIEW --- */
.emotional {
    text-align: center;
    padding: 200px 10%;
    background: var(--white);
}

.emotional h2 {
    font-size: 2.2rem;
    color: rgba(30, 42, 24, 0.4);
    margin-bottom: 15px;
}

.emotional p {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gold);
    font-weight: 500;
}

blockquote {
    font-size: clamp(1.8rem, 4.5vw, 3.2rem);
    font-family: 'Playfair Display', serif;
    margin-top: 60px;
    color: var(--green);
    line-height: 1.35;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

/* --- TECHNOLOGY FLOW --- */
.technology {
    text-align: center;
    background: var(--green);
    color: var(--cream);
}

.technology h2 {
    color: var(--cream);
    margin-bottom: 50px;
}

.flow {
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    margin: 50px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 900px;
    color: rgba(250, 246, 235, 0.5);
}

.flow span {
    padding: 10px 20px;
    border: 1px solid rgba(250, 246, 235, 0.1);
}

.flow span:nth-last-of-type(1) {
    color: var(--gold);
    border-color: var(--gold);
    font-weight: 500;
}

.technology p {
    max-width: 650px;
    margin: 40px auto 0 auto;
    color: rgba(250, 246, 235, 0.8);
}

/* --- EPILOGUE (CLOSING & FOOTER) --- */
.closing {
    background: #111A0E; 
    color: var(--cream);
    text-align: center;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 10%;
}

.closing h1 {
    font-size: clamp(3rem, 7vw, 5.5rem);
    margin-bottom: 35px;
    color: var(--cream);
    font-weight: 400;
}

.closing p {
    font-size: 1.15rem;
    color: rgba(250, 246, 235, 0.6);
}

.closing p:nth-of-type(2) {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 2rem;
    color: var(--gold);
    margin-top: 15px;
}

.social {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    gap: 50px;
}

.social a {
    color: var(--cream);
    text-decoration: none;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border-bottom: 1px solid rgba(250, 246, 235, 0.2);
    padding-bottom: 6px;
    transition: all 0.3s;
}

.social a:hover {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

footer {
    background: #0A1008;
    color: rgba(250, 246, 235, 0.4);
    text-align: center;
    padding: 60px 20px;
}

footer h3 {
    color: var(--cream);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

footer p {
    font-size: 0.85rem;
    color: rgba(250, 246, 235, 0.4);
}

/* --- RESPONSIF DISPLAY ENGINE --- */
@media(max-width:992px){
    section {
        padding: 100px 6% 80px 6%;
    }
    .chapter {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .image-placeholder {
        height: 380px;
    }
}

@media(max-width:768px){
    .social {
        flex-direction: column;
        gap: 25px;
    }
    .flow {
        flex-direction: column;
        gap: 10px;
    }
    .flow span {
        width: 100%;
        max-width: 260px;
    }
}

/* ==========================
   RESPONSIVE IMAGE
========================== */

.image-placeholder {
    overflow: visible;
}

.image-placeholder img {
    width: 100%;
    max-width: 630px;
    height: auto;
    display: block;
    object-fit: contain;
}

/* ==========================
   MOBILE RESPONSIVE
========================== */

@media (max-width: 992px) {

    .chapter {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .story-text {
        max-width: 700px;
        margin: auto;
    }

    .image-placeholder {
        height: auto;
        background: transparent;
        border: none;
    }

    .image-placeholder::after {
        display: none;
    }

    .menu-card {
        width: 100%;
    }
}

@media (max-width: 768px) {

    section {
        padding: 80px 20px;
    }

    .intro h1 {
        font-size: 2rem;
    }

    .dark-section {
        padding: 100px 20px;
    }

    .mission {
        padding: 100px 20px;
    }

    .transformation {
        padding: 100px 20px;
    }

    .emotional {
        padding: 120px 20px;
    }

    .quote {
        padding: 30px 20px;
        font-size: 1.1rem;
    }

    .social {
        flex-direction: column;
        gap: 20px;
    }

    .social a {
        display: block;
    }

    .ingredient-grid {
        grid-template-columns: 1fr;
    }

    .menu-container {
        flex-direction: column;
    }

    .menu-card {
        width: 100%;
    }
}

@media (max-width: 480px) {

    h2 {
        font-size: 1.8rem;
    }

    .big-text {
        font-size: 2.5rem;
    }

    blockquote {
        font-size: 1.7rem;
    }

    .closing h1 {
        font-size: 2.4rem;
    }

    .flow span {
        width: 100%;
        max-width: 100%;
    }

    .btn-story,
    .cta-button {
        width: 100%;
        text-align: center;
    }
}