:root {
    --forest: #1B3022;
    --gold: #C5A059;
    --terracotta: #A45C40;
    --stone: #E5E7E9;
    --stone-dark: #707B7C;
    --white: #FFFFFF;
}

body {
    font-family: 'Merriweather', serif;
    color: var(--forest);
    line-height: 1.8;
    background-color: var(--white);
}

h1, h2, h3, h4, h5, .navbar-brand, .btn {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Navigation */
.custom-nav {
    background-color: var(--forest);
    padding: 1rem 0;
    border-bottom: 2px solid var(--gold);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--gold) !important;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 70vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.hero-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(27, 48, 34, 0.6);
}

/* Layout Elements */
.section-padding {
    padding: 120px 0;
}

.bg-forest { background-color: var(--forest); }
.bg-stone { background-color: var(--stone); }
.bg-terracotta { background-color: var(--terracotta); }
.text-gold { color: var(--gold); }

/* Components */
.info-card {
    background: var(--white);
    border: 1px solid var(--stone);
    transition: all 0.3s ease;
    height: 100%;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.btn-gold {
    background-color: var(--gold);
    color: var(--forest);
    font-weight: 700;
    border: none;
    padding: 12px 30px;
    transition: all 0.3s ease;
}

.btn-gold:hover {
    background-color: var(--forest);
    color: var(--gold);
}

.btn-outline-gold {
    border: 2px solid var(--gold);
    color: var(--gold);
}

.btn-outline-gold:hover {
    background-color: var(--gold);
    color: var(--forest);
}

/* Matrix */
.matrix-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.matrix-cell {
    border: 1px solid var(--gold);
    padding: 40px 20px;
    text-align: center;
    transition: background 0.3s;
}

.matrix-cell:hover {
    background: rgba(197, 160, 89, 0.1);
}

.matrix-cell h3 {
    font-size: 0.9rem;
    margin: 0;
    color: var(--stone);
}

/* Visual Frames */
.cinematic-frame {
    border: 15px solid var(--stone);
    box-shadow: 20px 20px 0 var(--gold);
}

.small-img-frame {
    border: 8px solid var(--stone);
    max-width: 300px;
}

/* Footer */
.footer {
    background-color: var(--forest);
    color: var(--stone);
}

.footer-brand {
    color: var(--gold);
}

.footer a {
    color: var(--stone);
    text-decoration: none;
}

.footer a:hover {
    color: var(--gold);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: var(--forest);
    color: var(--white);
    padding: 20px 0;
    z-index: 9999;
    border-top: 3px solid var(--gold);
    display: none;
}

/* Responsive */
@media (max-width: 768px) {
    .matrix-grid { grid-template-columns: 1fr; }
    .section-padding { padding: 60px 0; }
}