        :root {
            --bg-color: #fdfdfb;
            --text-main: #1a1a1a;
            --text-muted: #666;
            --accent: #8b7d6b;
            --border-color: #e8e8e4;
            --font-serif: "Georgia", serif;
            --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
        }

        body {
            background-color: var(--bg-color);
            color: var(--text-main);
            font-family: var(--font-serif);
            margin: 0;
            line-height: 1.6;
        }

        /* Навигация */
        .nav-header {
            position: sticky; top: 0;
            background: rgba(253, 253, 251, 0.98);
            border-bottom: 1px solid var(--border-color);
            z-index: 1000; padding: 20px;
            display: flex; flex-direction: column; align-items: center;
        }

        .logo-main {
            text-decoration: none; color: var(--text-main);
            font-size: 1.6rem; font-weight: bold; letter-spacing: 4px;
            text-transform: uppercase; margin-bottom: 15px;
        }
        .logo-main span { color: var(--accent); }

        .main-menu { display: flex; gap: 15px; list-style: none; padding: 0; margin: 0; flex-wrap: wrap; justify-content: center; }
        .main-menu a {
            text-decoration: none; color: var(--text-main);
            font-family: var(--font-sans); font-size: 10px; font-weight: 600;
            text-transform: uppercase; letter-spacing: 1px;
        }
        .main-menu a:hover, .main-menu a.active { color: var(--accent); }

        /* Контент */
        .photo-column {
            max-width: 850px;
            margin: 40px auto;
            padding: 0 20px;
            text-align: center;
        }

        .photo-column h1 { font-weight: normal; font-size: 2.5rem; margin-bottom: 40px; }

        /* Стили изображений и подписей */
        .photo-column p img {
            max-width: 100%; height: auto !important;
            display: block; margin: 0 auto;
            cursor: zoom-in;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: opacity 0.3s;
        }
        .photo-column p img:hover { opacity: 0.9; }

        /* Текстовые подписи под фото */
        .photo-column p:not(:has(img)) {
            font-family: var(--font-sans);
            font-size: 12px;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin: -25px 0 60px;
            padding-bottom: 10px;
            border-bottom: 1px solid var(--border-color);
            display: inline-block;
        }

        /* Блок дополнительных ссылок */
        .archive-section {
            max-width: 900px;
            margin: 80px auto 40px;
            padding: 40px 20px;
            background: #f7f7f4;
            text-align: left;
        }

        .archive-section p:first-child {
            font-family: var(--font-sans);
            font-size: 14px;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--accent);
            margin-bottom: 30px;
            text-align: center;
        }

        .archive-section ul {
            display: grid;
            grid-template-columns: 1fr 1fr; /* Две колонки */
            gap: 15px 40px;
            list-style: none;
            padding: 0;
        }

        .archive-section li {
            font-family: var(--font-serif);
            font-size: 14px;
            border-bottom: 1px solid #e0e0db;
            padding-bottom: 8px;
        }

        .archive-section a {
            text-decoration: none;
            color: var(--text-main);
            transition: color 0.2s;
        }

        .archive-section a:hover { color: var(--accent); }

        hr { border: 0; border-top: 1px solid var(--border-color); margin: 40px 0; }

        footer {
            padding: 40px 0 80px;
            text-align: center;
            font-family: var(--font-sans);
            font-size: 12px;
            letter-spacing: 2px;
            text-transform: uppercase;
        }
        footer a { color: var(--text-main); text-decoration: none; font-weight: bold; }

        /* Lightbox */
        #lightbox {
            display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(255,255,255,0.98); z-index: 2000;
            justify-content: center; align-items: center; cursor: zoom-out;
        }
        #lightbox img { max-width: 95%; max-height: 90%; box-shadow: 0 20px 50px rgba(0,0,0,0.1); }

        @media (max-width: 768px) {
            .archive-section ul { grid-template-columns: 1fr; }
            h1 { font-size: 2rem; }
        }