:root {
    /* --green-dark: #1e4d35;
    --green-mid: #2d6a4f;
    --green-light: #7a9e87;
    --green-pale: #c8d8c8;
    --green-bg: rgb(46, 94, 78);
    --sage: #8faa8b; */
    /* --footer-bg: #2d4a35; */
    /* --green-logo: #2d7a4f; */
    /* --sage-bg: #8fa882; */
    /* Deep / headings / hover */
    --green-dark: #0e6f85;

    /* Main brand color (your chosen blue) */
    --green-mid: #16a5c6;

    /* UI elements / secondary buttons */
    --green-light: #63c3da;

    /* Cards / borders / soft backgrounds */
    --green-pale: #cfeff6;

    /* Section backgrounds (old green-bg equivalent) */
    --green-bg: #12839c;

    /* Muted neutral accent (old sage equivalent) */
    --sage: #8fbfcc;

    /* Footer / darkest section */
    --footer-bg: #0b5c6e;

    /* Logo tone */
    --green-logo: #1396b3;

    /* Page background tint */
    --sage-bg: #e8f7fb;
    --off-white: #f7f3ee;
    --text-dark: #1a1a1a;
    --text-mid: #444;
    --text-light: #888;
    --gallery-bg: #3a3a3a;
    --border: #d1d5db;
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.site-footer {
    background: var(--footer-bg);
    color: rgba(255, 255, 255, 0.85);
    padding: 52px 60px 40px;
}

.footer {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 32px 48px;
    margin-bottom: 40px;
}

.footer > div:first-child {
    flex: 0 0 100%;
}

.footer-col {
    flex: 1 1 120px;
}

.footer-logo {
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
}

.footer-col h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li a {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.75);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 20px;
    font-size: 0.78rem;
}

.scroll-top {
    position: fixed;
    bottom: 20px;
    right: 32px;
    width: 48px;
    height: 48px;
    background: var(--green-mid);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    z-index: 80;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.scroll-top-icon {
    fill: rgba(243, 237, 224, 1);
}

.footer-middle {
    display: flex;
    align-items: center;
    margin-top: 30px;
    margin-bottom: 20px;
}

.footer-middle .social-links {
    display: flex;
    gap: 18px;
}

.footer-middle .social-links a {
    width: 42px;
    height: 42px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: white;
    font-size: 18px;
    transition: 0.3s;
}

.footer-middle .social-links a:hover {
    transform: translateY(-4px);
}

.footer-middle .social-links a:nth-child(1):hover {
    background: #1877f2;
}
.footer-middle .social-links a:nth-child(2):hover {
    background: #000;
}
.footer-middle .social-links a:nth-child(3):hover {
    background: #e1306c;
}
.footer-middle .social-links a:nth-child(4):hover {
    background: #0077b5;
}
.footer-middle .social-links a:nth-child(5):hover {
    background: #ff0000;
}

.footer-logo span {
    color: #7fcca0;
}

/* Responsive */
@media (max-width: 768px) {
    .site-footer {
        padding: 40px 20px;
    }
}
