        /* ── Frontpage Navigation ── */
        .nav-wrapper {
            background: #F0EDE8;
        }

        .nav {
            max-width: 1600px;
            margin: 0 auto;
            padding: 2.5rem 4rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
        }

        .nav-logo {
            display: block;
            text-decoration: none;
        }

        .nav-logo img {
            width: 125px;
            height: auto;
        }

        .nav-links {
            display: flex;
            gap: 3rem;
            list-style: none;
        }

        .nav-links a {
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--text);
            text-decoration: none;
            letter-spacing: 0.01em;
            transition: color 0.2s;
        }

        .nav-links a:hover {
            color: var(--text-light);
        }

        .nav-hamburger {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0.5rem;
            color: var(--text);
        }

        .nav-hamburger span {
            display: block;
            width: 22px;
            height: 2px;
            background: var(--text);
            margin: 5px 0;
            transition: transform 0.3s, opacity 0.3s;
        }

        .nav-hamburger.open span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .nav-hamburger.open span:nth-child(2) {
            opacity: 0;
        }

        .nav-hamburger.open span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        .nav-mobile {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--bg);
            z-index: 100;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 2rem;
        }

        .nav-mobile.open {
            display: flex;
        }

        .nav-mobile a {
            font-family: var(--serif);
            font-size: 2rem;
            font-weight: 400;
            color: var(--text);
            text-decoration: none;
            transition: opacity 0.2s;
        }

        .nav-mobile a:hover {
            opacity: 0.6;
        }

        .nav-mobile-close {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0.5rem;
        }

        .nav-mobile-close span {
            display: block;
            width: 22px;
            height: 2px;
            background: var(--text);
        }

        .nav-mobile-close span:first-child {
            transform: rotate(45deg) translate(1px, 1px);
        }

        .nav-mobile-close span:last-child {
            transform: rotate(-45deg) translate(1px, -1px);
        }

        /* ── Article Navigation ── */
        .topnav {
            max-width: 1600px;
            margin: 0 auto;
            padding: 2.5rem 4rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .topnav-logo {
            display: block;
            text-decoration: none;
        }

        .topnav-logo img {
            width: 125px;
            height: auto;
        }

        .topnav-right {
            display: flex;
            align-items: center;
            gap: 2.5rem;
        }

        .topnav-right a {
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--text);
            text-decoration: none;
            transition: color 0.2s;
        }

        .topnav-right a:hover { color: var(--text-light); }

        /* ── Responsive (frontpage nav) ── */
        @media (max-width: 768px) {
            .nav {
                padding: 1.5rem 1.5rem;
            }

            .nav-links {
                gap: 1.25rem;
            }

            .nav-links a {
                font-size: 0.8rem;
            }

            .topnav { padding: 1.5rem 1.5rem; }
        }

        @media (max-width: 600px) {
            .topnav { padding: 1.25rem 1.25rem; }
        }

        @media (max-width: 480px) {
            .nav {
                padding: 1.25rem 1.25rem;
            }

            .nav-links {
                display: none;
            }

            .nav-hamburger {
                display: block;
            }
        }
