/* ═══════════════════════════════════════════════════════════════
   HOME PAGE STYLES
   ═══════════════════════════════════════════════════════════════ */

/* ============================================
   HERO SECTION - Diagonal Split with Floating Cards
   ============================================ */
.hero_sec_a7k3 {
    position: relative;
    min-height: calc(100vh - var(--hdr-h));
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--clr-bg);
}

.hero_bg_diag_n8k4 {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    background: linear-gradient(135deg, var(--clr-bg-alt) 0%, var(--clr-bg-dk) 100%);
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
    z-index: 0;
}

.hero_cont_m8n5 {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: var(--sp-3xl);
    align-items: center;
    max-width: var(--cnt-max);
    margin: 0 auto;
    padding: var(--sp-3xl) var(--sp-lg);
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero_txt_p4j9 {
    padding-right: var(--sp-xl);
}

.hero_tag_k7m3 {
    display: inline-block;
    font-size: var(--fs-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--clr-prim);
    margin-bottom: var(--sp-md);
    padding: var(--sp-xs) var(--sp-md);
    background: rgba(139, 69, 19, 0.1);
    border-radius: var(--radius-sm);
}

.hero_ttl_n2w6 {
    font-family: var(--font-hd);
    font-size: clamp(var(--fs-3xl), 5vw, var(--fs-5xl));
    font-weight: 600;
    line-height: 1.1;
    color: var(--clr-txt);
    margin-bottom: var(--sp-lg);
}

.hero_sub_t7v3 {
    font-size: var(--fs-md);
    color: var(--clr-txt-lt);
    line-height: 1.7;
    margin-bottom: var(--sp-xl);
    max-width: 480px;
}

.hero_cta_k5m8 {
    display: flex;
    gap: var(--sp-md);
    flex-wrap: wrap;
}

/* Hero Visual with Floating Cards */
.hero_visual_g7t2 {
    position: relative;
    height: 550px;
}

.hero_img_main_p9w4 {
    position: relative;
    width: 75%;
    height: 85%;
    margin-left: auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero_img_main_p9w4 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero_float_card_n7k5 {
    position: absolute;
    width: 180px;
    height: 220px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--clr-wht);
    animation: float_anim_k9m3 6s ease-in-out infinite;
}

.hero_float_card_n7k5 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card_1_m3p8 {
    bottom: 10%;
    left: 0;
    animation-delay: 0s;
}

.card_2_w9t6 {
    top: 5%;
    right: 5%;
    width: 140px;
    height: 170px;
    animation-delay: -3s;
}

@keyframes float_anim_k9m3 {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.feat_sec_w8n4 {
    padding: var(--sp-4xl) 0;
    background: var(--clr-wht);
}

.feat_grd_k7m3 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--sp-xl);
}

.feat_itm_p6t9 {
    text-align: center;
    padding: var(--sp-xl);
}

.feat_icn_n4w8 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin-bottom: var(--sp-md);
    color: var(--clr-prim);
    background: var(--clr-bg);
    border-radius: 50%;
}

.feat_ttl_j8k5 {
    font-family: var(--font-hd);
    font-size: var(--fs-lg);
    font-weight: 600;
    color: var(--clr-txt);
    margin-bottom: var(--sp-sm);
}

.feat_dsc_m3n7 {
    font-size: var(--fs-sm);
    color: var(--clr-txt-muted);
    line-height: 1.6;
}

/* ============================================
   CURATED SELECTION - 3 Column Large Cards
   ============================================ */
.curated_sec_n8w3 {
    padding: var(--sp-4xl) 0;
    background: var(--clr-bg-alt);
}

.sec_hdr_j7k5 {
    text-align: center;
    margin-bottom: var(--sp-3xl);
}

.sec_lbl_k9m2 {
    display: inline-block;
    font-size: var(--fs-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--clr-prim);
    margin-bottom: var(--sp-sm);
}

.sec_ttl_p9m4 {
    font-family: var(--font-hd);
    font-size: var(--fs-3xl);
    font-weight: 600;
    color: var(--clr-txt);
    margin-bottom: var(--sp-sm);
}

.sec_sub_t6n8 {
    font-size: var(--fs-md);
    color: var(--clr-txt-muted);
}

/* Curated Grid - 3 columns with first item larger */
.curated_grd_k4m7 {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: var(--sp-lg);
}

.curated_card_w9n3 {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--clr-wht);
    box-shadow: var(--shadow-sm);
    transition: transform var(--trns-base), box-shadow var(--trns-base);
}

.curated_card_w9n3:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.curated_card_w9n3.large_k7p4 {
    grid-row: span 2;
}

.curated_lnk_m7k4 {
    display: block;
    height: 100%;
}

.curated_img_p8j6 {
    position: relative;
    height: 100%;
    min-height: 280px;
    overflow: hidden;
}

.curated_card_w9n3.large_k7p4 .curated_img_p8j6 {
    min-height: 580px;
}

.curated_img_p8j6 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--trns-slow);
}

.curated_card_w9n3:hover .curated_img_p8j6 img {
    transform: scale(1.05);
}

.curated_ovly_t5n9 {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(61, 41, 20, 0.8) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: var(--sp-lg);
    opacity: 0;
    transition: opacity var(--trns-base);
}

.curated_card_w9n3:hover .curated_ovly_t5n9 {
    opacity: 1;
}

.curated_info_n6p2 {
    color: var(--clr-wht);
    transform: translateY(20px);
    transition: transform var(--trns-base);
}

.curated_card_w9n3:hover .curated_info_n6p2 {
    transform: translateY(0);
}

.curated_ttl_j8m5 {
    font-family: var(--font-bd);
    font-size: var(--fs-base);
    font-weight: 500;
    margin-bottom: var(--sp-xs);
    line-height: 1.3;
}

.curated_prc_w4t7 {
    font-family: var(--font-hd);
    font-size: var(--fs-lg);
    font-weight: 600;
    margin-bottom: var(--sp-sm);
}

.curated_btn_k3w8 {
    display: inline-block;
    padding: var(--sp-sm) var(--sp-md);
    font-size: var(--fs-xs);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--clr-txt);
    background: var(--clr-wht);
    border-radius: var(--radius-sm);
}

.sec_ftr_p7k3 {
    text-align: center;
    margin-top: var(--sp-3xl);
}

.btn_ghost_n8m4 {
    display: inline-flex;
    align-items: center;
    padding: var(--sp-md) var(--sp-xl);
    font-size: var(--fs-sm);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--clr-txt);
    border: 1px solid var(--clr-txt);
    border-radius: var(--radius-sm);
    transition: all var(--trns-fast);
}

.btn_ghost_n8m4:hover {
    background: var(--clr-txt);
    color: var(--clr-wht);
}

/* ============================================
   BRAND STORY SECTION
   ============================================ */
.story_sec_t6k8 {
    padding: var(--sp-4xl) 0;
    background: var(--clr-wht);
}

.story_cont_w4n7 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-4xl);
    align-items: center;
    max-width: var(--cnt-max);
    margin: 0 auto;
    padding: 0 var(--sp-lg);
}

.story_img_p9m3 {
    position: relative;
}

.story_img_p9m3 img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.story_txt_k7n5 {
    padding: var(--sp-xl) 0;
}

.story_lbl_j4m8 {
    display: inline-block;
    font-size: var(--fs-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--clr-prim);
    margin-bottom: var(--sp-md);
}

.story_ttl_n8w6 {
    font-family: var(--font-hd);
    font-size: var(--fs-2xl);
    font-weight: 600;
    color: var(--clr-txt);
    line-height: 1.2;
    margin-bottom: var(--sp-lg);
}

.story_p_a7k3 {
    font-size: var(--fs-base);
    color: var(--clr-txt-lt);
    line-height: 1.8;
    margin-bottom: var(--sp-md);
}

.story_lnk_p6t9 {
    display: inline-flex;
    align-items: center;
    margin-top: var(--sp-md);
    font-size: var(--fs-sm);
    font-weight: 500;
    color: var(--clr-prim);
    transition: all var(--trns-fast);
}

.story_lnk_p6t9:hover {
    color: var(--clr-prim-dk);
    transform: translateX(4px);
}

/* ============================================
   NEWSLETTER SECTION
   ============================================ */
.nl_sec_m8k4 {
    padding: var(--sp-4xl) 0;
    background: var(--clr-prim);
}

.nl_cont_p7w3 {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.nl_ttl_sec_n4k8 {
    font-family: var(--font-hd);
    font-size: var(--fs-2xl);
    font-weight: 600;
    color: var(--clr-wht);
    margin-bottom: var(--sp-sm);
}

.nl_dsc_sec_t6m2 {
    font-size: var(--fs-base);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--sp-xl);
}

.nl_frm_sec_w9n5 {
    display: flex;
    gap: var(--sp-sm);
    margin-bottom: var(--sp-md);
}

.nl_inp_sec_j7k4 {
    flex: 1;
    padding: var(--sp-md) var(--sp-lg);
    font-size: var(--fs-base);
    border: none;
    border-radius: var(--radius-sm);
    outline: none;
}

.nl_inp_sec_j7k4::placeholder {
    color: var(--clr-txt-muted);
}

.nl_btn_sec_m3p8 {
    padding: var(--sp-md) var(--sp-xl);
    font-size: var(--fs-sm);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--clr-prim);
    background: var(--clr-wht);
    border-radius: var(--radius-sm);
    transition: all var(--trns-fast);
}

.nl_btn_sec_m3p8:hover {
    background: var(--clr-sec-lt);
}

.nl_note_k6t4 {
    font-size: var(--fs-xs);
    color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */
@media (max-width: 1024px) {
    .hero_cont_m8n5 {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero_txt_p4j9 {
        padding-right: 0;
        order: 2;
    }
    
    .hero_visual_g7t2 {
        order: 1;
        height: 400px;
    }
    
    .hero_bg_diag_n8k4 {
        width: 100%;
        clip-path: polygon(0 40%, 100% 30%, 100% 100%, 0% 100%);
    }
    
    .hero_sub_t7v3 {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero_cta_k5m8 {
        justify-content: center;
    }
    
    .hero_float_card_n7k5 {
        display: none;
    }
    
    .feat_grd_k7m3 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .curated_grd_k4m7 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .curated_card_w9n3.large_k7p4 {
        grid-row: span 1;
    }
    
    .story_cont_w4n7 {
        grid-template-columns: 1fr;
        gap: var(--sp-xl);
    }
    
    .story_txt_k7n5 {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero_sec_a7k3 {
        min-height: auto;
        padding: var(--sp-xl) 0;
    }
    
    .hero_visual_g7t2 {
        height: 300px;
    }
    
    .feat_grd_k7m3 {
        grid-template-columns: 1fr;
        gap: var(--sp-lg);
    }
    
    .feat_itm_p6t9 {
        padding: var(--sp-md);
    }
    
    .curated_grd_k4m7 {
        grid-template-columns: 1fr;
    }
    
    .curated_img_p8j6,
    .curated_card_w9n3.large_k7p4 .curated_img_p8j6 {
        min-height: 350px;
    }
    
    .nl_frm_sec_w9n5 {
        flex-direction: column;
    }
}
