/* ── FOOTER ── */
footer {
    background: var(--bg3);
    border-top: 1px solid var(--border);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
    gap: 48px;
    padding: clamp(40px, 5vw, 64px) clamp(20px, 5vw, 80px);
    border-bottom: 1px solid var(--border);
}

.footer-logo-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin-bottom: 16px;
}

.footer-logo-wrap img {
    height: 44px;
    width: auto;
    display: block;
}

.footer-logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
}

.footer-logo-text em {
    color: var(--brand);
    font-style: normal;
}

.footer-tagline {
    font-size: 13.5px;
    color: var(--text2);
    line-height: 1.7;
    max-width: 260px;
    margin-bottom: 20px;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.footer-social-btn {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--surface);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--text2);
    transition: all 0.2s;
}

.footer-social-btn svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

.footer-social-btn:hover {
    background: var(--brand);
    border-color: var(--brand);
    color: #fff;
    transform: translateY(-2px);
}

.footer-social-btn.ws:hover {
    background: #22c55e;
    border-color: #22c55e;
}

.footer-social-btn.em:hover {
    background: #ef4444;
    border-color: #ef4444;
}

.footer-col-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--text3);
    margin-bottom: 18px;
}

.footer-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-nav-list a {
    font-size: 14px;
    color: var(--text2);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-nav-list a:hover {
    color: var(--brand);
}

.footer-contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: var(--brand-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

.footer-contact-icon svg {
    width: 14px;
    height: 14px;
    stroke: var(--brand);
    fill: none;
    stroke-width: 2;
}

.footer-contact-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.9px;
    text-transform: uppercase;
    color: var(--text3);
    margin-bottom: 3px;
}

.footer-contact-value {
    font-size: 13.5px;
    color: var(--text2);
    line-height: 1.45;
}

.footer-contact-value a {
    color: var(--brand);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.footer-contact-value a:hover {
    color: var(--brand-dark);
}

.footer-contact-value a.wa {
    color: #22c55e;
}

.footer-contact-value a.wa:hover {
    color: #16a34a;
}

.footer-map-preview {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border);
    height: 140px;
    margin-bottom: 12px;
    box-shadow: var(--shadow-sm);
}

.footer-map-preview iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
    pointer-events: none;
}

.footer-map-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 11px 16px;
    border-radius: 12px;
    border: 1.5px solid var(--brand);
    background: var(--brand-pale);
    color: var(--brand-dark);
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s;
}

.footer-map-btn svg {
    width: 15px;
    height: 15px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    flex-shrink: 0;
}

.footer-map-btn:hover {
    background: var(--brand);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(26, 188, 156, 0.3);
}

.footer-address-note {
    font-size: 11.5px;
    color: var(--text3);
    text-align: center;
    margin-top: 8px;
    line-height: 1.5;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    padding: 20px clamp(20px, 5vw, 80px);
}

.footer-bottom p {
    font-size: 13px;
    color: var(--text3);
}

.footer-bottom-links {
    display: flex;
}

.footer-bottom-links a {
    color: var(--brand);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    padding: 0 14px;
    border-right: 1px solid var(--border);
    transition: color 0.2s;
}

.footer-bottom-links a:last-child {
    border-right: none;
}

.footer-bottom-links a:hover {
    color: var(--brand-dark);
}