        :root {
            --bg-color: #f5f2ed;
            --text-color: #1a1a1a;
            --muted-text: #706f6c;
            --border-color: #d1cfca;
            --radius: 4px; /* Более строгие углы в стиле Anthropic */
        }

        body {
            background-color: var(--bg-color);
            color: var(--text-color);
            font-family: 'Inter', -apple-system, sans-serif;
            margin: 0;
            padding: 0;
            -webkit-font-smoothing: antialiased;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
        }

        /* Шапка */
        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 40px 0 60px 0;
        }

        .logo {
            font-weight: 800;
            font-size: 22px;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .nav-link {
            text-decoration: none;
            color: var(--text-color);
            font-size: 16px;
        }

        /* Hero секция строго по скриншоту */
        .hero {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 60px;
            margin-bottom: 100px;
            align-items: start;
        }

        .hero-main h1 {
            font-size: clamp(48px, 6vw, 84px);
            line-height: 0.9;
            margin: 0 0 30px 0;
            font-weight: 500;
            letter-spacing: -3px;
        }

        .hero-main p {
            font-size: 20px;
            line-height: 1.4;
            color: var(--muted-text);
            max-width: 340px;
            margin: 0;
        }

        .hero-quote {
            display: flex;
            align-self: stretch;
        }

        .vertical-line {
            width: 1px;
            background-color: var(--text-color);
            margin-right: 32px;
        }

        .quote-text {
            font-family: "Georgia", serif;
            font-style: italic;
            font-size: clamp(20px, 2.5vw, 28px);
            line-height: 1.3;
            max-width: 360px;
            color: #2a2a2a;
        }

        /* Галерея */
        .gallery {
            column-count: 4;
            column-gap: 24px;
            padding-bottom: 100px;
        }

        .pin-link {
            display: block;
            position: relative;
            margin-bottom: 24px;
            text-decoration: none;
            color: inherit;
            overflow: hidden;
            border-radius: var(--radius);
            background: #e5e2dd;
            transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

        .pin-link {
            display: block;
            position: relative;
            margin-bottom: 24px;
            text-decoration: none;
            color: inherit;
            overflow: hidden;
            border-radius: var(--radius);
            background: #e5e2dd;
            transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            opacity: 0;
            transform: translateY(30px) scale(0.95);
        }

        .pin-link.visible {
            animation: fadeInUp 0.6s ease-out forwards;
        }

        .pin-link img {
            width: 100%;
            display: block;
            transition: filter 0.4s ease;
        }

        /* Fade-in animation */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px) scale(0.95);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        /* Интеллектуальный ховер */
        .hover-card {
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.6); /* Более темное затемнение */
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 24px;
            opacity: 0;
            transition: opacity 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            backdrop-filter: blur(4px);
        }

        .pin-link:hover .hover-card {
            opacity: 1;
        }

        .pin-link:hover img {
            filter: brightness(0.99); /* Затемнение вместо черно-белого */
            transform: scale(1.05); /* Легкое увеличение картинки */
        }

        .hover-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            transform: translateY(30px); /* Более выразительное смещение */
            opacity: 0;
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

        .pin-link:hover .hover-content {
            transform: translateY(0);
            opacity: 1;
        }

        .hover-text {
            color: white;
            font-size: 18px;
            margin-bottom: 20px;
            font-weight: 500;
            text-shadow: 0 2px 8px rgba(0,0,0,0.5);
            text-align: center;
        }

        /* Псевдо-кнопка (span) */
        .hover-btn-style {
            display: inline-block;
            background: white;
            color: var(--text-color);
            padding: 12px 24px;
            border-radius: 4px;
            font-size: 14px;
            font-weight: 600;
            transform: translateY(20px);
            opacity: 0;
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) 0.1s;
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        }

        .pin-link:hover .hover-btn-style {
            transform: translateY(0);
            opacity: 1;
        }

        /* Анимация при наведении на кнопку */
        .hover-btn-style:hover {
            background: var(--text-color);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(0,0,0,0.3);
        }

        @media (max-width: 1024px) { .gallery { column-count: 3; } }
        @media (max-width: 768px) {
            .hero { grid-template-columns: 1fr; gap: 40px; }
            .gallery { column-count: 2; }
            .hero-main h1 { letter-spacing: -1px; }
        }
        @media (max-width: 480px) { .gallery { column-count: 1; } }