* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', serif;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    width: 100%;
}

/* ============================================
   TOP NAVIGATION
   ============================================ */
.top-nav {
    background: linear-gradient(135deg, #3d342d 0%, #2a231d 100%);
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.top-nav.scrolled {
    background: rgba(61, 52, 45, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 
        0 4px 24px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-nav::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #8b7355, #b89e7a, #8b7355);
    transition: opacity 0.3s ease;
}

.top-nav.scrolled::after {
    opacity: 0.7;
}

.top-nav a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 13px;
    font-family: Arial, sans-serif;
    transition: all 0.3s ease;
    padding: 16px 28px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 500;
}

.top-nav a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: #8b7355;
    transition: width 0.3s ease;
}

.top-nav a:hover {
    color: white;
    background: rgba(255, 255, 255, 0.05);
}

.top-nav a:hover::before {
    width: 80%;
}

.top-nav a.active {
    color: white;
    background: rgba(139, 115, 85, 0.15);
}

.top-nav a.active::before {
    width: 80%;
}

/* ============================================
   HEADER
   ============================================ */
.header {
    background: linear-gradient(180deg, #fafaf8 0%, #f5f3f0 100%);
    padding: 32px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 20px rgba(61, 52, 45, 0.06);
    position: relative;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #8b7355, transparent);
    border-radius: 0 0 4px 4px;
}

.header-text {
    flex: 1;
    max-width: 650px;
}

.header-text h1 {
    font-size: 28px;
    font-weight: normal;
    color: #3d342d;
    margin-bottom: 8px;
    font-family: 'Georgia', serif;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.header-text p {
    font-size: 15px;
    color: #8b7355;
    margin: 0;
    font-style: italic;
    font-family: 'Georgia', serif;
    letter-spacing: 0.3px;
}

.header-logos {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

.header-logos::before {
    content: '';
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 60px;
    background: linear-gradient(180deg, transparent, #e0dbd4, transparent);
}

.header-logos img {
    height: 80px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(61, 52, 45, 0.12));
    transition: transform 0.3s ease;
}

.header-logos img:hover {
    transform: scale(1.05);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 968px) {
    .top-nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .top-nav a {
        padding: 14px 20px;
        font-size: 12px;
    }

    .header {
        padding: 28px 40px;
    }

    .header-text h1 {
        font-size: 24px;
    }

    .header-logos::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .top-nav a {
        padding: 12px 16px;
        font-size: 11px;
    }

    .header {
        flex-direction: column;
        text-align: center;
        padding: 24px 20px;
        gap: 20px;
    }

    .header-text {
        max-width: 100%;
    }

    .header-text h1 {
        font-size: 22px;
    }

    .header-text p {
        font-size: 14px;
    }

    .header-logos {
        gap: 16px;
    }

    .header-logos img {
        height: 70px;
    }
}
