/* Footer Component */
.site-footer {
    background-color: oklch(20% .014 60);
    padding: 6rem 0 2rem 0;
    color: #ffffff;
    box-sizing: border-box;
    border-top: 1px solid rgba(255, 255, 255, 0.05); /* very subtle separation */
}

.footer-container {
}

/* Footer Grid */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 6rem;
}

/* Small Labels */
.footer-label {
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #666666;
    margin-bottom: 2rem;
}

/* Left Column */
.footer-col-left .footer-heading {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: normal;
    margin: 0 0 1.5rem 0;
}

.footer-col-left .footer-heading .highlight {
    color: var(--primary);
    font-style: italic;
}

.footer-col-left .footer-desc {
    font-size: 0.95rem;
    color: #9F978C;
    line-height: 1.6;
    max-width: 400px;
    margin-bottom: 2.5rem;
}

/* Buttons (Replicated from Hero or standalone) */
.footer-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-buttons .wt-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.5rem;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border-radius: 2px;
}

.footer-buttons .wt-btn-primary {
    background-color: var(--primary);
    color: #ffffff;
    border: none;
}

.footer-buttons .wt-btn-primary:hover {
    background-color: #c9511e;
}

.footer-buttons .wt-btn-secondary {
    background-color: transparent;
    color: #9F978C;
    border: 1px solid rgba(159, 151, 140, 0.3);
}

.footer-buttons .wt-btn-secondary:hover {
    border-color: #9F978C;
    background-color: rgba(159, 151, 140, 0.05);
}

/* Middle Column (Links) */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: #9F978C;
    font-size: 0.9rem;
}

.footer-links svg {
    margin-right: 1rem;
    opacity: 0.7;
}

.footer-links a {
    color: #9F978C;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
}

/* Right Column (Location & Coords) */
.footer-location {
    font-size: 0.9rem;
    color: #9F978C;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-coords {
    font-family: monospace;
    font-size: 0.75rem;
    color: #9F978C;
    letter-spacing: 1px;
}

/* Bottom Bar */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    font-size: 0.65rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #666666;
}

/* Responsive */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .footer-col-left {
        grid-column: 1 / -1; /* Make left column full width on tablet */
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}
