/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', Arial, sans-serif;
    background-color: #0F0F0F;
    color: #EDEAE6;
    line-height: 1.6;
}

/* Typography */
h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    letter-spacing: 2px;
    text-transform: uppercase;
}

p {
    color: #A89B8C;
}

/* Header */
header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background: transparent;
    z-index: 1000;
    transition: background 0.3s ease;
}

header.scrolled {
    background: #0F0F0F;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
}

.logo {
    font-size: 20px;
    font-weight: bold;
    color: #C6A96B;
}

/* Navigation */
nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: #EDEAE6;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

nav ul li a:hover,
nav ul li a.active {
    color: #C6A96B;
}

/* CTA */
.cta-btn {
    background: #3B2A1F;
    color: #fff;
    padding: 10px 18px;
    border-radius: 4px;
    text-decoration: none;
    border: 1px solid #C6A96B;
    transition: all 0.3s;
}

.cta-btn:hover {
    background: #C6A96B;
    color: #000;
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Sections */
.section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 10%;
}

.section.dark {
    background: #0F0F0F;
}

.section.brown {
    background: #2B1E16;
}

/* Split Layout */
.split {
    display: flex;
    gap: 40px;
    width: 100%;
}

.split.reverse {
    flex-direction: row-reverse;
}

.split .text {
    flex: 1;
}

.split .image {
    flex: 2;
}

/* Image Placeholder */
.image img {
    width: 100%;
    height: auto;
    display: block;
    background: #222;
}

/* Hero */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero h1 {
    font-size: 48px;
}

/* Cards */
.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.card {
    background: #2B1E16;
    padding: 20px;
}

/* Footer */
footer {
    background: #0A0A0A;
    padding: 60px 10%;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-grid h4 {
    margin-bottom: 15px;
    color: #C6A96B;
}

.footer-grid a {
    display: block;
    color: #A89B8C;
    text-decoration: none;
    margin-bottom: 8px;
}

.footer-bottom {
    margin-top: 40px;
    border-top: 1px solid #333;
    padding-top: 20px;
    font-size: 12px;
}

/* Responsive */
@media(max-width: 900px) {
    nav ul {
        display: none;
        flex-direction: column;
        background: #0F0F0F;
        position: absolute;
        top: 70px;
        right: 0;
        width: 100%;
    }

    nav ul.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .split {
        flex-direction: column;
    }

    .grid {
        grid-template-columns: 1fr;
    }
}
img {
max-width: 100%;
height: auto;
display: block;
}