:root {
    --primary: #f36f21;
    --dark: #1a1a1a;
    --text: #4a4a4a;
    --light: #f9f9f9;
    --white: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body { 
    font-family: 'Montserrat', sans-serif; 
    color: var(--text); 
    line-height: 1.7;
    scroll-behavior: smooth;
}

h1, h2, h3, .logo { font-family: 'Playfair Display', serif; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }
.text-center { text-align: center; }
.section { padding: 80px 0; }
.bg-light { background-color: var(--light); }
.section-dark { background-color: var(--dark); color: var(--white); padding: 80px 0; }

/* Navigation */
.top-bar { background: var(--light); font-size: 0.8rem; padding: 8px 0; border-bottom: 1px solid #eee; }
.main-nav { background: var(--white); padding: 20px 0; position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.logo { font-size: 1.5rem; font-weight: bold; letter-spacing: 1px; }
.accent { color: var(--primary); }
.nav-links { list-style: none; display: flex; gap: 30px; align-items: center; }
.nav-links a { text-decoration: none; color: var(--dark); font-weight: 600; font-size: 0.9rem; }

/* Hero */
.hero { height: 85vh; position: relative; display: flex; align-items: center; overflow: hidden; }
.hero-image { position: absolute; inset: 0; z-index: -1; }
.hero-image img { width: 100%; height: 100%; object-fit: cover; }
.hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to right, rgba(255,255,255,0.9), transparent); }
.hero-content { position: relative; z-index: 1; max-width: 650px; }
.hero h1 { font-size: 4rem; margin: 15px 0; color: var(--dark); }
.eyebrow { text-transform: uppercase; color: var(--primary); font-weight: bold; letter-spacing: 3px; font-size: 0.8rem; }

/* Grid Layouts */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.product-item img { width: 100%; height: 400px; object-fit: cover; border-radius: 8px; margin-bottom: 15px; }

/* Forms & Buttons */
.btn-primary { background: var(--primary); color: white; padding: 15px 35px; text-decoration: none; font-weight: bold; display: inline-block; border-radius: 4px; border: none; cursor: pointer; }
.btn-secondary { background: var(--dark); color: white; padding: 15px 35px; text-decoration: none; font-weight: bold; display: inline-block; margin-left: 10px; border-radius: 4px; }
.static-form input, .static-form textarea { width: 100%; padding: 15px; margin-bottom: 15px; border: 1px solid #333; background: transparent; color: white; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.full-width { width: 100%; }

/* Mobile Menu */
.menu-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.menu-toggle span { width: 25px; height: 3px; background: var(--dark); }

@media (max-width: 768px) {
    .grid-2 { grid-template-columns: 1fr; }
    .nav-links { display: none; }
    .menu-toggle { display: flex; }
    .hero h1 { font-size: 2.5rem; }
    .hide-mobile { display: none; }
}