:root {
    --primary: #1f4d3a;
    --secondary: #8fbf9f;
    --accent: #c89b3c;
    --dark: #1b1b1b;
    --light: #f8f9fa;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    background: white;
    line-height: 1.7;
}

header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.95);
    z-index: 1000;
    border-bottom: 1px solid #eee;
}

.nav {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.logo img {
    height: 70px;
    width: auto;
    display: block;
}

nav a {
    margin-left: 30px;
    text-decoration: none;
    color: #42280d;
    font-weight: 500;
}

nav a:hover {
    color: var(--primary);
}

.hero-slider {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.slides {
    position: absolute;
    inset: 0;
}

.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #ea7a1e;
    padding: 20px;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 60px;
    margin-bottom: 20px;
}

.hero-content p {
    max-width: 750px;
    font-size: 20px;
    opacity: 0.95;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 40px;
    }
}

section {
    padding: 100px 20px;
    background-color: #F6F6F6 !important;
}

.container {
    max-width: 1200px;
    margin: auto;
}

.story {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
    align-items: center;
}

.story img {
    width: 100%;
    border-radius: 12px;
}

h2 {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    margin-bottom: 20px;
    color: #DA8538;
}

.exports {
    background: var(--light);
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.card {
    background: white;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-8px);
}

.card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.card-content {
    padding: 30px;
}

.card-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #BD671D;
}

.card-content p {
    font-size: 15px;
}

.values {
    text-align: center;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.value-box {
    padding: 40px;
    border-radius: 16px;
    background: #f7f7f7;
}

footer {
    background: #DA8538;
    color: white;
    padding: 60px 20px;
}

footer .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

footer h4 {
    margin-bottom: 15px;
    color: #47331B;
}

footer p,
footer a {
    font-size: 14px;
    color: #47331B;
    text-decoration: none;
}

footer a:hover {
    color: white;
}