:root {
    --gold: #c5a059;
    --dark-wood: #2b1d12;
    --ivory: #fcfaf5;
    --accent-green: #2e7d32;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    background-color: var(--ivory);
    /* Bamboo Background Pattern */
    background-image: linear-gradient(rgba(252, 250, 245, 0.95), rgba(252, 250, 245, 0.95)), 
                      url('https://images.unsplash.com/photo-1549413187-052cc143322a?auto=format&fit=crop&q=80&w=1920');
    background-attachment: fixed;
    background-size: cover;
}

.container { max-width: 1200px; margin: auto; padding: 0 40px; }

/* Navbar */
.navbar {
    background: #fff;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.nav-flex { display: flex; justify-content: space-between; align-items: center; }
.brand { line-height: 1; }
.main-title { font-family: 'Cinzel', serif; font-size: 1.8rem; font-weight: 700; color: var(--dark-wood); }
.sub-title { font-size: 0.7rem; letter-spacing: 5px; color: var(--gold); display: block; }

.nav-links { display: flex; list-style: none; }
.nav-links a { text-decoration: none; color: #444; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; margin: 0 15px; }

.btn-nav-call {
    background: var(--dark-wood);
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.8rem;
}

/* Hero Section */
.hero {
    height: 80vh;
    background: url('https://images.unsplash.com/photo-1550965320-7f28c1170701?auto=format&fit=crop&q=80&w=1920') center/cover;
    display: flex;
    align-items: center;
    position: relative;
    color: white;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.85), rgba(0,0,0,0.3));
}

.hero-content { position: relative; z-index: 5; padding-left: 10%; max-width: 900px; }
.hero-content h1 { font-family: 'Cinzel', serif; font-size: 4rem; line-height: 1.1; margin-bottom: 20px; }
.hero-subtext { font-size: 1.2rem; margin-bottom: 40px; font-weight: 300; }

.btn-gold { background: var(--gold); color: white; padding: 18px 40px; text-decoration: none; display: inline-block; font-weight: 700; margin-right: 15px; }
.btn-outline { border: 2px solid white; color: white; padding: 16px 40px; text-decoration: none; display: inline-block; font-weight: 700; transition: 0.3s; }

/* Inventory Grid */
.inventory-section { padding: 100px 0; }
.section-heading { text-align: center; font-family: 'Cinzel', serif; font-size: 2.5rem; margin-bottom: 60px; color: var(--dark-wood); }

.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.item-card {
    background: white;
    padding: 50px 30px;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.05);
    transition: 0.4s;
}
.item-card i { font-size: 2.5rem; color: var(--gold); margin-bottom: 25px; }
.item-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.05); }

/* Reviews Section */
.reviews-section {
    padding: 100px 0;
    background: var(--dark-wood);
}
.white-text { color: white !important; }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.review-card {
    background: rgba(255,255,255,0.05);
    padding: 40px;
    border: 1px solid rgba(255,255,255,0.1);
    color: white;
}
.stars { color: var(--gold); margin-bottom: 15px; }
.reviewer { margin-top: 20px; color: var(--gold); font-size: 0.8rem; text-transform: uppercase; }

/* Location & Map */
.location-section { padding: 100px 0; }
.flex-map { display: flex; gap: 60px; flex-wrap: wrap; }
.info-panel, .map-panel { flex: 1; min-width: 320px; }

.hours-panel { background: white; padding: 40px; border-left: 5px solid var(--gold); margin-bottom: 30px; }
.hours-list { list-style: none; }
.hours-list li { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid #f0f0f0; font-size: 0.9rem; font-weight: 700; }
.sun-highlight { color: #b71c1c; }

.call-btn-action {
    display: block;
    background: var(--accent-green);
    color: white;
    padding: 20px;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    margin-top: 20px;
}

footer { background: #111; color: #555; text-align: center; padding: 40px; font-size: 0.7rem; letter-spacing: 2px; }

@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.5rem; }
    .nav-links { display: none; }
}