/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
    --dark-primary: #141B2D;
    --light-primary: #F8F7F4;
    --accent: #B07242;
    --dark-secondary: #2A3350;
    --body-text: #4A4F5E;
    --accent-light: #E8D4C0;
    --accent-hover: #8B3A3A;
    --border: #D8D6D0;
    --font-headline: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --font-accent: 'Cormorant Garamond', serif;
    --transition-smooth: 0.4s ease;
}

/* ===== RESET & BASE ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--body-text);
    background-color: var(--light-primary);
}
::selection {
    background-color: var(--accent);
    color: var(--dark-primary);
}
a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-smooth);
}

/* ===== LAYOUT ===== */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===== LOGO ===== */
.nav-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}
.nav-logo {
    height: 28px;
    width: auto;
    display: block;
}
.footer-brand {
    display: flex;
    justify-content: flex-start;
}
.footer-logo {
    height: 70px;
    width: auto;
    display: block;
}

/* ===== NAV ===== */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--dark-primary);
}

.nav-links a {
    font-family: var(--font-body);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    color: rgba(248, 247, 244, 0.7);
    text-decoration: none;
    margin-left: 2.5rem;
    transition: color 0.3s;
}
.nav-links a:hover,
.nav-links a.active {
    color: var(--accent);
}
.nav-links a:active {
    color: var(--accent-hover);
}

/* ===== CTA BUTTON ===== */
.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--accent);
    color: var(--dark-primary);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}
.cta-button:hover {
    background-color: var(--accent-hover);
    color: var(--light-primary);
}

/* ===== FOOTER ===== */
footer {
    background-color: var(--dark-primary);
    padding: 3rem 0;
}
.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}
.footer-inner > div {
    flex-basis: calc(33.33% - 1.5rem);
}
.footer-links {
    text-align: center;
}
.footer-links a {
    color: rgba(248, 247, 244, 0.6);
    text-decoration: none;
    font-size: 0.85rem;
    margin-left: 0.75rem;
    margin-right: 0.75rem;
    transition: color 0.3s;
}
.footer-links a:hover {
    color: var(--accent);
}
.footer-copy {
    font-size: 0.75rem;
    color: rgba(248, 247, 244, 0.6);
    text-align: right;
}
.footer-legal {
    width: 100%;
    text-align: center;
    margin-top: 0.5rem;
}
.footer-legal a {
    color: rgba(248, 247, 244, 0.55);
    text-decoration: none;
    font-size: 0.7rem;
    margin: 0 0.8rem;
    transition: color 0.3s;
}
.footer-legal a:hover {
    color: var(--accent);
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--dark-primary);
    padding: 1.5rem 2rem;
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}
.cookie-banner.show { display: flex; }
.cookie-banner p {
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    color: rgba(248, 247, 244, 0.7);
    margin: 0;
    line-height: 1.6;
    text-align: center;
    max-width: 700px;
}
.cookie-banner a { color: var(--accent); text-decoration: underline; }
.cookie-btns { display: flex; gap: 0.8rem; flex-wrap: wrap; justify-content: center; }
.cookie-btn {
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.6rem 1.5rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}
.cookie-accept { background: var(--accent); color: var(--dark-primary); }
.cookie-accept:hover { background: var(--accent-hover); color: var(--light-primary); }
.cookie-necessary {
    background: transparent;
    color: rgba(248, 247, 244, 0.7);
    border: 1px solid rgba(248, 247, 244, 0.2);
}
.cookie-necessary:hover { border-color: var(--accent); color: var(--accent); }

/* ===== BURGER MENU ===== */
.nav-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav-burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--light-primary);
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    /* footer */
    .footer-inner { flex-direction: column; text-align: center; }
    .footer-links a { margin-left: 0; margin-right: 1rem; }

    /* container */
    .container { padding: 0 1.25rem; }

    /* nav / burger */
    nav { flex-wrap: wrap; }
    .nav-burger { display: flex; }
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        padding: 0.5rem 0 1rem;
        margin-top: 0.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }
    .nav-links.open { display: flex; }
    .nav-links a {
        margin: 0;
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        font-size: 1rem;
    }
    .nav-links a:last-child { border-bottom: none; }
}
