/* ===== FOOTER ===== */
.d14-footer-wave-top {
    width: 100%;
    line-height: 0;
    background: linear-gradient(135deg, #e8734a, #c2693d);
    margin: 0;
    padding: 0;
}
.d14-footer-wave-top svg { display: block; width: 100%; height: 80px; }
.d14-footer {
    background: #2c1e13;
    color: #d4c5b5;
    position: relative;
    overflow: hidden;
}
.d14-footer-blob {
    position: absolute;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    opacity: 0.04;
    pointer-events: none;
}
.d14-footer-blob-1 {
    width: 400px;
    height: 350px;
    background: #e8734a;
    top: 10%;
    right: -100px;
    animation: d14BlobF1 20s ease-in-out infinite;
}
.d14-footer-blob-2 {
    width: 300px;
    height: 280px;
    background: #8fae8b;
    bottom: 10%;
    left: -80px;
    border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
    animation: d14BlobF2 25s ease-in-out infinite;
}
@keyframes d14BlobF1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-20px, 15px) rotate(5deg); }
}
@keyframes d14BlobF2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(15px, -20px) rotate(-4deg); }
}
.d14-footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px 0;
    position: relative;
    z-index: 1;
}
.d14-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(212, 197, 181, 0.1);
}
.d14-footer h3 {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.15rem;
    color: #fffbf5;
    margin-bottom: 20px;
    font-weight: 400;
}
.d14-footer-about p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #a89888;
    margin-bottom: 20px;
}
.d14-footer-social {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.d14-footer-social a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(255, 251, 245, 0.06);
    color: #d4c5b5;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}
.d14-footer-social a:hover {
    background: #e8734a;
    color: #fff;
    transform: translateY(-2px);
}
.d14-footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.d14-footer-links a {
    font-size: 0.88rem;
    color: #a89888;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.d14-footer-links a::before {
    content: '';
    width: 0;
    height: 1.5px;
    background: #e8734a;
    transition: width 0.3s ease;
}
.d14-footer-links a:hover { color: #fffbf5; }
.d14-footer-links a:hover::before { width: 12px; }
.d14-footer-contact p {
    font-size: 0.88rem;
    color: #a89888;
    line-height: 1.7;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.d14-footer-contact i {
    color: #e8734a;
    font-size: 0.85rem;
    margin-top: 4px;
    width: 16px;
    flex-shrink: 0;
}
.d14-footer-contact a { color: #a89888; transition: color 0.25s ease; }
.d14-footer-contact a:hover { color: #fffbf5; }
.d14-footer-certs {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.d14-footer-cert {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: #8fae8b;
}
.d14-footer-cert i { color: #8fae8b; font-size: 0.8rem; }
.d14-footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}
.d14-footer-copy { font-size: 0.82rem; color: #7a6a5a; }
.d14-footer-legal { display: flex; gap: 20px; }
.d14-footer-legal a { font-size: 0.82rem; color: #7a6a5a; transition: color 0.25s ease; }
.d14-footer-legal a:hover { color: #fffbf5; }

/* Back to Top */
.d14-back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #e8734a, #c2693d);
    color: #fff;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(232, 115, 74, 0.3);
    transition: all 0.35s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    z-index: 900;
}
.d14-back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.d14-back-to-top:hover { transform: translateY(-3px); box-shadow: 0 6px 28px rgba(232, 115, 74, 0.45); }
