/* ── CSS Variables ── */
:root {
    --olive: #3a5230;
    --olive-mid: #4d6b40;
    --olive-light: #7a9b6a;
    --gold: #c5a059;
    --gold-light: #e8cfa0;
    --cream: #f8f5ef;
    --cream-dark: #ede8de;
    --ink: #1a1f14;
    --ink-mid: #3a3d34;
    --ink-soft: #6b6e62;
    --white: #ffffff;
    --border: rgba(58, 82, 48, 0.12);

    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'DM Sans', sans-serif;
    --font-mono: 'DM Mono', monospace;

    --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── NAVBAR ── */
.tl-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.2rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.4s var(--ease-smooth), box-shadow 0.4s;
}

.tl-nav.scrolled {
    background: rgba(248, 245, 239, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 1px 0 var(--border);
}

.tl-nav__brand {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.tl-nav__logo {
    height: 55px;
    width: auto;
    display: block;
    object-fit: contain;
}

.tl-nav__brand-text span {
    display: block;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--olive);
    line-height: 1.1;
}

.tl-nav__brand-text small {
    font-family: var(--font-mono);
    font-size: 0.55rem;
    letter-spacing: 0.18em;
    color: var(--ink-soft);
    text-transform: uppercase;
}

.tl-nav__links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.tl-nav__links a {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--ink-mid);
    position: relative;
    transition: color 0.25s;
}

.tl-nav__links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--olive);
    transition: width 0.3s var(--ease-smooth);
}

.tl-nav__links a:hover {
    color: var(--olive);
}

.tl-nav__links a:hover::after {
    width: 100%;
}

.tl-nav__badge {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    color: var(--olive);
    border: 1.5px solid var(--olive);
    border-radius: 999px;
    padding: 0.35rem 1rem;
    transition: background 0.25s, color 0.25s;
}

.tl-nav__badge:hover {
    background: var(--olive);
    color: var(--white);
}

/* Mobile hamburger */
.tl-nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}

.tl-nav__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--ink);
    transition: all 0.3s;
}

.tl-nav__mobile {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--cream);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
}

.tl-nav__mobile.open {
    display: flex;
}

.tl-nav__mobile a {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--olive);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {

    .tl-nav__links,
    .tl-nav__badge {
        display: none;
    }

    .tl-nav__toggle {
        display: flex;
    }
}