/* Footer */
        .footer {
            background: var(--text-dark);
            color: var(--white);
            padding: 60px 0 30px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-section h3 {
            font-family: 'EB Garamond', serif;
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--gold);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.5rem;
        }

        .footer-links a {
            color: var(--silver);
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: var(--gold);
        }
		
		.social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .social-link {
            width: 40px;
            height: 40px;
            background: var(--navy-blue);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            text-decoration: none;
            transition: all 0.3s;
        }

        .social-link:hover {
            background: var(--gold);
            transform: translateY(-2px);
        }

        .footer-bottom {
            border-top: 1px solid var(--memorial-gray);
            padding-top: 2rem;
            text-align: center;
            color: var(--silver);
        }

        .batch-crest {
            font-size: 2rem;
            margin-bottom: 1rem;
        }