@charset "UTF-8";

:root {
    /* Palette extracted from provided images */
    --linen: #F5F1EA;          /* Soft White Beige */
    --creamy-taupe: #DACFB6;   /* Light Base */
    --warm-beige: #B89C82;     /* Medium Tone */
    --rustic-taupe: #7E6A52;   /* Accent Brown */
    --charcoal-clay: #3A2B20;  /* Deep Text/Contrast */
    --antique-gold: #C5A059;   /* Luxury Highlight */
    
    --white: #ffffff;
    --text-main: var(--charcoal-clay);
    --text-muted: #5C544E;
    
    --transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
    scroll-behavior: smooth; 
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--white);
    color: var(--text-main);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .serif { 
    font-family: 'Playfair Display', serif; 
}

/* SCROLLBAR */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--linen); }
::-webkit-scrollbar-thumb { background: var(--warm-beige); border-radius: 10px; }

/* REVEAL SYSTEM */
.reveal { opacity: 0; transform: translateY(40px) scale(0.96); transition: all 1s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.active { opacity: 1; transform: translateY(0) scale(1); }

.container { max-width: 1400px; margin: auto; padding: 0 40px; }

/* NAVIGATION */
nav {
    position: fixed; width: 100%; top: 0; z-index: 1000;
    padding: 30px 0; transition: var(--transition);
}
nav.scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    padding: 15px 0;
    border-bottom: 1px solid var(--creamy-taupe);
}
.nav-inner { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 24px; font-weight: 800; color: var(--charcoal-clay); text-decoration: none; letter-spacing: -0.5px; }
.logo span { color: var(--antique-gold); }
.nav-links a {
    text-decoration: none; color: var(--text-main); margin-left: 40px;
    font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px;
    transition: 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--antique-gold); }

/* Override for dark headers */
nav.nav-light-text:not(.scrolled) .logo,
nav.nav-light-text:not(.scrolled) .nav-links a {
    color: var(--white);
}
nav.nav-light-text:not(.scrolled) .nav-links a:hover,
nav.nav-light-text:not(.scrolled) .nav-links a.active {
    color: var(--antique-gold);
}

/* HERO */
.hero {
    height: 100vh; width: 100%; position: relative; overflow: hidden;
}
.hero-carousel-wrapper {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
}
.hero-slide {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    opacity: 0; transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex; align-items: center; justify-content: center;
    background-size: cover; background-position: center; z-index: 1;
}
.hero-slide.active { opacity: 1; z-index: 2; }

.hero-container { position: relative; z-index: 10; text-align: center; width: 100%; }

.hero-slide-bg {
    position: absolute; inset: 0; background-size: cover; background-position: center;
    transition: transform 10s ease-out; z-index: 1;
}
.hero-slide.active .hero-slide-bg { transform: scale(1.1); }

.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(58,43,32,0.4), rgba(58,43,32,0.7));
    z-index: 5;
}

.hero-content {
    max-width: 900px; margin: auto;
    opacity: 0; transform: translateY(40px); transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-slide.active .hero-content { opacity: 1; transform: translateY(0); transition-delay: 0.4s; }

.hero-tag { 
    display: inline-block; color: var(--white); font-weight: 700; 
    text-transform: uppercase; letter-spacing: 4px; font-size: 13px; margin-bottom: 25px;
    opacity: 0.8;
}
.hero h1 { font-size: clamp(54px, 10vw, 100px); line-height: 1; margin-bottom: 35px; color: var(--white); }
.hero h1 span { color: var(--antique-gold); }
.hero p { font-size: 22px; color: var(--white); margin: 0 auto 50px; max-width: 650px; opacity: 0.9; }

.hero-actions {
    display: flex; gap: 20px; justify-content: center; flex-wrap: wrap;
}

/* IMAGE BAND SECTION */
.image-band {
    height: 500px; width: 100%; background-size: cover; background-position: center;
    position: relative; display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}
.image-band-bg {
    position: absolute; inset: 0; background-size: cover; background-position: center;
    background-attachment: fixed; z-index: 1;
}
.image-band::after {
    content: ''; position: absolute; inset: 0; background: rgba(58,43,32,0.4);
}
.image-band .container { position: relative; z-index: 10; text-align: center; color: var(--white); }

/* OVERLAP LAYOUT */
.overlap-layout { display: grid; grid-template-columns: 1.2fr 1fr; gap: 0; align-items: center; }
.overlap-img { position: relative; z-index: 1; border-radius: 20px; overflow: hidden; box-shadow: 0 50px 100px rgba(0,0,0,0.15); }
.overlap-img img { width: 100%; height: 650px; object-fit: cover; }
.overlap-text { 
    background: var(--white); padding: 100px 80px; margin-left: -100px; 
    position: relative; z-index: 10; border-radius: 20px;
    box-shadow: 0 40px 80px rgba(58,43,32,0.08); border: 1px solid var(--creamy-taupe);
}

@media (max-width: 1024px) {
    .overlap-layout { grid-template-columns: 1fr; }
    .overlap-text { margin-left: 0; margin-top: -50px; padding: 60px 40px; }
    .overlap-img img { height: 450px; }
}

/* BUTTON REFINEMENT */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    padding: 20px 45px; background: var(--charcoal-clay);
    color: var(--white); text-decoration: none; font-weight: 700;
    border-radius: 50px; transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); 
    border: 1px solid var(--charcoal-clay);
    cursor: pointer; font-size: 16px; position: relative; overflow: hidden;
}
.btn-outline { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.3); backdrop-filter: blur(10px); color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--charcoal-clay); border-color: var(--white); }

/* FEATURE CARDS ENHANCEMENT */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.feature-card {
    padding: 60px 50px; background: var(--white); border-radius: 24px;
    box-shadow: 0 20px 50px rgba(58,43,32,0.03); border: 1px solid var(--creamy-taupe);
}
.feature-card:hover { transform: translateY(-15px); box-shadow: 0 40px 80px rgba(58,43,32,0.1); border-color: transparent; }

/* WHY BOX IMAGE FIX */
.why-visual-img { width: 100%; height: 100%; object-fit: cover; }

/* FOOTER LOGO */
.footer-logo { font-size: 32px; font-weight: 800; letter-spacing: -1px; }

/* SECTIONS */
.section { padding: 140px 0; }
.section-bg-light { 
    background: var(--linen); 
    background-image: url('https://www.transparenttextures.com/patterns/natural-paper.png');
    border-top: 1px solid var(--creamy-taupe); 
}
.section-tag { color: var(--antique-gold); font-weight: 800; font-size: 13px; letter-spacing: 2px; text-transform: uppercase; display: block; margin-bottom: 15px; }
.section-title { font-size: 48px; margin-bottom: 60px; color: var(--charcoal-clay); line-height: 1.2; }
.section-desc { font-size: 18px; color: var(--text-muted); max-width: 700px; margin-bottom: 50px; }

/* BENTO GRID CATEGORIES */
.bento-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 30px; height: 600px; }
.bento-item { 
    position: relative; border-radius: 20px; overflow: hidden; 
    background: var(--linen); border: 1px solid var(--creamy-taupe);
}
.bento-item.large { grid-row: span 2; }
.bento-img { width: 100%; height: 100%; object-fit: cover; transition: 1.5s ease; filter: sepia(20%); }
.bento-item:hover .bento-img { transform: scale(1.08); filter: sepia(0%); }
.bento-overlay {
    position: absolute; bottom: 0; left: 0; width: 100%; padding: 40px;
    background: linear-gradient(to top, rgba(58,43,32,0.9), rgba(58,43,32,0.4) 60%, transparent);
    color: var(--white);
    display: flex; flex-direction: column; justify-content: flex-end;
}
.bento-title { font-size: 24px; margin-bottom: 5px; }
.bento-subtitle { font-size: 14px; opacity: 0.9; }

/* WHY BOX */
.why-box { 
    display: flex; background: var(--white); border-radius: 30px; 
    overflow: hidden; box-shadow: 0 40px 100px rgba(58,43,32,0.05); 
}
.why-content { flex: 1; padding: 100px 80px; }
.why-title { font-size: 48px; margin-bottom: 30px; line-height: 1.2; }
.why-desc { color: var(--text-muted); margin-bottom: 30px; font-size: 18px; line-height: 1.8; }
.why-visual { flex: 1; background: var(--charcoal-clay); position: relative; overflow: hidden; }

/* CONTACT FORM */
.contact-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
.contact-info-title { font-size: 24px; color: var(--rustic-taupe); margin-top: 50px; margin-bottom: 10px; }
.contact-info-desc { font-size: 16px; color: var(--text-muted); }

.input-group { margin-bottom: 25px; }
.input-group label { display: block; font-size: 12px; font-weight: 700; text-transform: uppercase; margin-bottom: 8px; color: var(--rustic-taupe); letter-spacing: 1px; }
.input-group input, .input-group textarea {
    width: 100%; padding: 15px 0; background: transparent; border: none;
    border-bottom: 2px solid var(--creamy-taupe); font-family: inherit; font-size: 16px;
    transition: 0.3s; color: var(--charcoal-clay);
}
.input-group input:focus, .input-group textarea:focus { border-bottom-color: var(--antique-gold); outline: none; }
.btn-full { width: 100%; margin-top: 15px; }

/* FOOTER */
footer { background: var(--charcoal-clay); color: var(--linen); padding: 120px 0 60px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 80px; margin-bottom: 100px; }
.footer-logo span { color: var(--antique-gold); }
.footer-desc { margin-top: 25px; opacity: 0.6; font-size: 15px; max-width: 320px; line-height: 1.8; }

.footer-col { display: flex; flex-direction: column; gap: 15px; }
.footer-col-title { font-weight: 700; color: var(--white); font-size: 14px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 15px; }
footer a { color: var(--creamy-taupe); text-decoration: none; font-size: 15px; transition: 0.3s; }
footer a:hover { color: var(--white); transform: translateX(5px); }

.footer-bottom { padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.05); display: flex; justify-content: space-between; font-size: 13px; opacity: 0.5; }

/* RESPONSIVE OVERRIDES */
@media (max-width: 992px) {
    .feature-grid, .bento-grid, .why-box, .contact-wrap, .footer-grid { grid-template-columns: 1fr; }
    .why-content { padding: 60px 40px; }
    .why-visual { height: 400px; }
    .bento-grid { height: auto; }
    .bento-item { height: 350px; }
    .footer-grid { gap: 50px; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .section { padding: 100px 0; }
    .section-title { font-size: 38px; margin-bottom: 40px; }
    .container { padding: 0 25px; }
}

/* PRODUCT SLIDER */
.slider-container { position: relative; width: 100%; padding: 40px 0; }
.slider-track-wrap { 
    overflow-x: auto; 
    scroll-snap-type: x mandatory; 
    scrollbar-width: none; 
    -ms-overflow-style: none; 
    width: 100%; 
    cursor: grab;
}
.slider-track-wrap::-webkit-scrollbar { display: none; }
.product-slider { 
    display: flex; gap: 30px; 
    padding: 20px 0;
}
.slider-item { 
    flex: 0 0 400px; 
    scroll-snap-align: start;
    background: var(--white); 
    border-radius: 20px; 
    border: 1px solid var(--creamy-taupe); 
    overflow: hidden; 
    transition: all 0.5s ease;
    user-select: none;
}
.slider-item:hover { transform: translateY(-10px); box-shadow: 0 30px 60px rgba(58,43,32,0.08); border-color: transparent; }
.slider-img { width: 100%; height: 280px; object-fit: cover; pointer-events: none; }
.slider-content { padding: 30px; }
.slider-content h3 { font-family: 'Playfair Display', serif; font-size: 24px; margin-bottom: 10px; color: var(--charcoal-clay); }
.slider-content p { color: var(--text-muted); font-size: 15px; line-height: 1.6; margin-bottom: 20px; }

@media (max-width: 768px) {
    .slider-item { flex: 0 0 300px; }
}
