/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --primary: #5c6b4f;
    --primary-dark: #4a5740;
    --primary-light: #7a8c6a;
    --accent: #c4956a;
    --accent-light: #d4a97e;
    --dark: #2c2c2c;
    --gray-900: #1a1a1a;
    --gray-800: #333333;
    --gray-700: #4a4a4a;
    --gray-600: #5e5e5e;
    --gray-500: #7a7a7a;
    --gray-400: #9e9e9e;
    --gray-300: #d4d4d4;
    --gray-200: #e8e8e8;
    --gray-100: #f5f3f0;
    --gray-50: #faf8f5;
    --white: #ffffff;
    --cream: #fdfbf7;
    --cream-dark: #f7f3ed;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --shadow: 0 4px 12px rgba(0,0,0,0.07);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.1);
    --radius: 8px;
    --radius-lg: 16px;
    --transition: all 0.3s ease;
}

html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', -apple-system, sans-serif;
    color: var(--gray-600);
    line-height: 1.6;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 14px 28px; border-radius: var(--radius); font-weight: 600;
    font-size: 0.9rem; cursor: pointer; transition: var(--transition);
    border: none; font-family: 'Inter', sans-serif;
}
.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(92,107,79,0.3); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.4); }
.btn-outline:hover { background: var(--white); color: var(--dark); }
.btn-white { background: var(--white); color: var(--dark); }
.btn-white:hover { background: var(--cream); transform: translateY(-1px); }
.btn-lg { padding: 16px 32px; font-size: 0.95rem; }
.btn-full { width: 100%; }

/* ===== HEADER ===== */
.header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(255,255,255,0.98); backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gray-200);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo {
    font-size: 1.5rem; font-weight: 600; color: var(--dark);
    font-family: 'Cormorant Garamond', serif; letter-spacing: -0.02em;
}
.logo span { color: var(--primary); }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-weight: 500; color: var(--gray-600); font-size: 0.9rem; }
.nav-links a:hover { color: var(--primary); }
.mobile-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.mobile-toggle span { width: 22px; height: 2px; background: var(--gray-700); border-radius: 2px; }

/* ===== HERO ===== */
.hero {
    position: relative; min-height: 90vh; display: flex; align-items: center;
    background: url('https://images.unsplash.com/photo-1598440947619-2c35fc9aa908?w=1600&q=80') center/cover no-repeat;
    margin-top: 72px;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(44,44,44,0.65) 0%, rgba(44,44,44,0.3) 100%);
}
.hero-content { position: relative; z-index: 1; max-width: 620px; padding: 80px 0; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 16px; background: rgba(255,255,255,0.12); backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.2); border-radius: 50px;
    color: var(--white); font-size: 0.8rem; font-weight: 600; margin-bottom: 24px;
}
.hero-badge svg { opacity: 0.9; }
.hero h1 {
    font-size: clamp(2.8rem, 5.5vw, 4rem); font-weight: 600;
    line-height: 1.1; color: var(--white); margin-bottom: 20px;
}
.hero-desc { font-size: 1.05rem; color: rgba(255,255,255,0.85); line-height: 1.7; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ===== STATS ===== */
.stats { padding: 0; margin-top: -40px; position: relative; z-index: 10; }
.stats-grid {
    display: grid; grid-template-columns: repeat(4,1fr);
    background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
}
.stat-item { padding: 36px 24px; text-align: center; border-right: 1px solid var(--gray-200); }
.stat-item:last-child { border-right: none; }
.stat-item strong {
    display: block; font-size: 2rem; font-weight: 700;
    color: var(--primary); margin-bottom: 4px; font-family: 'Cormorant Garamond', serif;
}
.stat-item span { font-size: 0.85rem; color: var(--gray-500); font-weight: 500; }

/* ===== SECTIONS ===== */
.section { padding: 100px 0; }
.section-header { text-align: center; max-width: 600px; margin: 0 auto 60px; }
.section-tag {
    display: inline-block; font-size: 0.8rem; font-weight: 700;
    color: var(--accent); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 12px;
}
.section-header h2, .about-text h2, .contact-info h2 {
    font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 600;
    color: var(--dark); line-height: 1.2; margin-bottom: 16px;
}
.section-desc { font-size: 1.05rem; color: var(--gray-500); line-height: 1.7; }

/* ===== ABOUT ===== */
.about { background: var(--cream); }
.about-layout { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: center; }
.about-image img { border-radius: var(--radius-lg); width: 100%; height: 480px; object-fit: cover; }
.about-text p { color: var(--gray-600); margin-bottom: 24px; line-height: 1.7; font-size: 0.95rem; }
.about-list { display: flex; flex-direction: column; gap: 14px; }
.about-list li { display: flex; align-items: center; gap: 12px; font-weight: 500; color: var(--gray-700); font-size: 0.9rem; }
.about-list li svg { color: var(--primary); flex-shrink: 0; }

/* ===== PRODUCTS ===== */
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.product-card {
    background: var(--white); border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition);
}
.product-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: transparent; }
.product-img { height: 220px; overflow: hidden; position: relative; }
.product-img img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.product-card:hover .product-img img { transform: scale(1.05); }
.product-badge {
    position: absolute; top: 12px; left: 12px;
    padding: 4px 12px; background: var(--primary); color: var(--white);
    border-radius: 4px; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
}
.product-body { padding: 24px; }
.product-body h3 { font-size: 1.2rem; font-weight: 600; color: var(--dark); margin-bottom: 8px; }
.product-body p { font-size: 0.88rem; color: var(--gray-500); line-height: 1.6; }

/* ===== INGREDIENTS ===== */
.ingredients { background: var(--cream); }
.ingredients-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.ingredient-card {
    background: var(--white); border-radius: var(--radius-lg);
    overflow: hidden; border: 1px solid var(--gray-200); transition: var(--transition);
}
.ingredient-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.ingredient-img { height: 160px; overflow: hidden; }
.ingredient-img img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.ingredient-card:hover .ingredient-img img { transform: scale(1.05); }
.ingredient-body { padding: 20px; }
.ingredient-body h4 { font-size: 1.1rem; font-weight: 600; color: var(--dark); margin-bottom: 6px; }
.ingredient-body p { font-size: 0.85rem; color: var(--gray-500); line-height: 1.5; }

/* ===== VALUES ===== */
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.value-card {
    text-align: center; padding: 40px 24px;
    background: var(--white); border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg); transition: var(--transition);
}
.value-card:hover { border-color: var(--primary-light); box-shadow: var(--shadow); transform: translateY(-4px); }
.value-icon {
    width: 64px; height: 64px; display: flex; align-items: center; justify-content: center;
    background: rgba(92,107,79,0.08); border-radius: 50%; margin: 0 auto 20px;
    color: var(--primary);
}
.value-card h4 { font-size: 1.15rem; font-weight: 600; color: var(--dark); margin-bottom: 10px; }
.value-card p { font-size: 0.85rem; color: var(--gray-500); line-height: 1.6; }

/* ===== CTA ===== */
.cta {
    position: relative; padding: 100px 0;
    background: url('https://images.unsplash.com/photo-1515377905703-c4788e51af15?w=1600&q=80') center/cover no-repeat;
}
.cta-overlay { position: absolute; inset: 0; background: rgba(92,107,79,0.88); }
.cta-content { position: relative; text-align: center; max-width: 560px; margin: 0 auto; }
.cta-content h2 { font-size: 2.4rem; font-weight: 600; color: var(--white); margin-bottom: 16px; }
.cta-content p { font-size: 1.05rem; color: rgba(255,255,255,0.85); margin-bottom: 32px; line-height: 1.7; }

/* ===== CONTACT ===== */
.contact-wrapper { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start; }
.contact-info > p { color: var(--gray-600); margin-bottom: 36px; line-height: 1.7; font-size: 0.95rem; }
.contact-details { display: flex; flex-direction: column; gap: 24px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-item svg { color: var(--primary); margin-top: 2px; flex-shrink: 0; }
.contact-item strong { display: block; font-weight: 600; color: var(--dark); margin-bottom: 2px; font-size: 0.9rem; }
.contact-item p { color: var(--gray-600); font-size: 0.9rem; }
.contact-form { background: var(--cream); padding: 40px; border-radius: var(--radius-lg); border: 1px solid var(--gray-200); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--gray-700); margin-bottom: 6px; }
.form-group input, .form-group textarea {
    width: 100%; padding: 12px 16px; border: 1px solid var(--gray-300);
    border-radius: var(--radius); font-size: 0.9rem; font-family: inherit;
    transition: var(--transition); background: var(--white); color: var(--dark);
}
.form-group input:focus, .form-group textarea:focus {
    outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(92,107,79,0.08);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* ===== FOOTER ===== */
.footer { background: var(--dark); color: var(--gray-400); padding: 80px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 60px; }
.footer-brand .logo { color: var(--white); margin-bottom: 16px; display: inline-block; }
.footer-brand p { color: var(--gray-400); line-height: 1.7; font-size: 0.9rem; }
.footer-links h4 { color: var(--white); font-weight: 600; font-size: 0.9rem; margin-bottom: 20px; font-family: 'Inter', sans-serif; }
.footer-links ul { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { color: var(--gray-400); font-size: 0.88rem; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.08); text-align: center; font-size: 0.85rem; color: var(--gray-500); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .about-layout { grid-template-columns: 1fr; gap: 48px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .contact-wrapper { grid-template-columns: 1fr; }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .ingredients-grid { grid-template-columns: repeat(2, 1fr); }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .nav-links, .header .btn { display: none; }
    .mobile-toggle { display: flex; }
    .hero { min-height: 80vh; }
    .hero h1 { font-size: 2.4rem; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .stat-item { border-bottom: 1px solid var(--gray-200); }
    .section { padding: 64px 0; }
    .footer-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .contact-form { padding: 24px; }
    .products-grid { grid-template-columns: 1fr; }
    .ingredients-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .hero-actions { flex-direction: column; }
    .stats-grid { grid-template-columns: 1fr; }
    .stat-item { border-right: none !important; }
}
