        /* ── FOOTER ─────────────────────────────────────────────── */
        .site-footer {
            background: #1a1208;
            color: #c9b99a;
            font-family: 'Montserrat', sans-serif;
            font-size: 0.82rem;
            margin-top: 3rem;
            border-top: 2px solid #6b4f2a;
        }
 
        .page-width {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }
 
        /* Top section */
        .footer-top {
            padding: 3rem 0 2rem;
            border-bottom: 1px solid #3a2a14;
        }
 
        .footer-top-inner {
            display: flex;
            gap: 3rem;
            flex-wrap: wrap;
            align-items: flex-start;
        }
 
        .footer-brand {
            flex: 1 1 200px;
        }
 
        .footer-brand img {
            filter: brightness(0.85) sepia(0.3);
            margin-bottom: 0.75rem;
        }
 
        .footer-tagline {
            color: #8a7560;
            line-height: 1.6;
            font-size: 0.78rem;
        }
 
        .footer-tagline em {
            font-style: italic;
            font-size: 0.72rem;
            color: #6a5840;
        }
 
        .footer-links-col {
            flex: 1 1 140px;
        }
 
        .footer-links-col h4 {
            font-size: 0.72rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            color: #d4a96a;
            margin-bottom: 1rem;
            padding-bottom: 0.4rem;
            border-bottom: 1px solid #3a2a14;
        }
 
        .footer-links-col ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
 
        .footer-links-col ul li {
            margin-bottom: 0.45rem;
        }
 
        .footer-links-col ul li a {
            color: #a08870;
            text-decoration: none;
            transition: color 0.2s;
        }
 
        .footer-links-col ul li a:hover {
            color: #d4a96a;
        }
 
        /* Bottom bar */
        .footer-bottom {
            padding: 1.1rem 0;
        }
 
        .footer-bottom-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.75rem;
        }
 
        .footer-copyright {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
 
        .footer-copyright small,
        .footer-copyright small a {
            color: #6a5840;
            text-decoration: none;
        }
 
        .footer-copyright small a:hover {
            color: #a08870;
        }
 
        .footer-policies {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 0.25rem 1.25rem;
        }
 
        .footer-policies li small a {
            color: #5a4830;
            text-decoration: none;
            transition: color 0.2s;
        }
 
        .footer-policies li small a:hover {
            color: #d4a96a;
            text-decoration: underline;
        }
 
        .footer-locale {
            color: #5a4830;
            font-size: 0.75rem;
            white-space: nowrap;
        }
 
        @media (max-width: 768px) {
            .footer-top-inner {
                flex-direction: column;
                gap: 2rem;
            }
            .footer-bottom-inner {
                flex-direction: column;
                align-items: flex-start;
            }
        }
