*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --gold: #b8943f;
    --gold-light: #d4aa5a;
    --gold-pale: #f0e0b0;
    --cream: #faf5eb;
    --dark: #1a1612;
    --dark-mid: #2e2820;
    --text: #3a3228;
    --text-muted: #7a6e60;
    --white: #ffffff;
    --nav-bg: rgba(242, 230, 208, 0.97);

}

html { scroll-behavior: smooth; }

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--text);
    overflow-x: hidden;
}

/* ─── NAVBAR ─── */
nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 60px;
    height: 80px;
    background: var(--nav-bg);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(184, 148, 63, 0.15);
    transition: box-shadow 0.3s;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nav-logo img{
    padding-top: 10px;
}

.nav-logo-icon {
    width: 48px;
    height: 48px;
    background: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.nav-logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: var(--dark);
    font-weight: 600;
    letter-spacing: 1px;
}

.nav-logo-sub {
    font-size: 10px;
    color: var(--gold);
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    line-height: 1;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 500;
    transition: color 0.2s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 1px;
    background: var(--gold);
    transition: width 0.3s;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--gold);
}

.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
}

footer {
    background: var(--dark-mid);
    color: var(--cream);
    padding: 60px 80px 40px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(184, 148, 63, 0.15);
    margin-bottom: 36px;
}

.footer-brand h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: var(--cream);
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 13px;
    color: rgba(240, 224, 176, 0.5);
    line-height: 1.7;
    font-weight: 300;
    max-width: 280px;
}

.footer-col h4 {
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    font-weight: 500;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col li {
    font-size: 13px;
    color: rgba(240, 224, 176, 0.6);
}

.footer-col a {
    color: rgba(240, 224, 176, 0.6);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col a:hover { color: var(--gold); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 12px;
    color: rgba(240, 224, 176, 0.35);
}

.footer-be {
    font-size: 12px;
    color: rgba(240, 224, 176, 0.35);
    letter-spacing: 0.5px;
}
@media (max-width: 1024px) {
    nav { padding: 0 32px; }
    footer { padding: 50px 32px 40px; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
    .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
    nav { padding: 0 20px; height: 68px; }
    .nav-links { display: none; }

    .hamburger {
        display: flex;
        flex-direction: column;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 4px;
    }
    .hamburger span {
        display: block;
        width: 24px; height: 2px;
        background: var(--dark);
        border-radius: 2px;
    }

    .mobile-menu {
        display: none;
        position: fixed;
        top: 68px; left: 0; right: 0;
        background: var(--nav-bg);
        border-bottom: 1px solid rgba(184,148,63,0.2);
        flex-direction: column;
        padding: 16px 24px;
        z-index: 99;
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu a {
        text-decoration: none;
        font-size: 15px;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        color: var(--text);
        font-weight: 500;
        padding: 14px 0;
        border-bottom: 1px solid rgba(184,148,63,0.15);
        transition: color 0.2s;
    }
    .mobile-menu a:last-child { border-bottom: none; }
    .mobile-menu a:hover { color: var(--gold); }
    footer { padding: 40px 20px 40px; }
    .footer-top { grid-template-columns: 1fr; gap: 28px; }
    .footer-brand { grid-column: auto; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

