    /* ============================================================
       DB Upstage — Footer (professional · simple · on-theme)
       Palette: pink #B20D5D → purple #4A0AB4, gold #ffd29a
       ============================================================ */
    .site-footer.site-footer--db{ position: relative; overflow: hidden; }
    .site-footer--db::before{
        content: "";
        position: absolute;
        inset: 0 0 auto 0;
        height: 2px;
        background: linear-gradient(90deg, transparent 0%, rgba(178,13,93,.7) 25%, rgba(74,10,180,.7) 75%, transparent 100%);
        opacity: .6;
        z-index: 2;
    }

    /* ---------- MAIN : Multi-column grid ---------- */
    .db-footer-main{
        padding: 72px 0 50px;
    }
    .db-footer-grid{
        display: grid;
        grid-template-columns: 1.6fr 1fr;
        gap: 56px;
        align-items: flex-start;
    }
    .db-footer-col{ min-width: 0; }

    /* ---------- Column titles ---------- */
    .db-footer-col__title{
        position: relative;
        font-size: 16px;
        font-weight: 700;
        color: #fff;
        margin: 0 0 26px;
        padding-bottom: 12px;
        letter-spacing: .4px;
    }
    .db-footer-col__title::after{
        content: "";
        position: absolute;
        left: 0; bottom: 0;
        width: 40px;
        height: 2px;
        background: linear-gradient(90deg, #B20D5D 0%, #4A0AB4 100%);
        border-radius: 2px;
    }

    /* ---------- Brand block ---------- */
    .db-footer-col--brand .db-footer-brand__logo{
        display: inline-flex; align-items: center;
        margin-bottom: 22px;
    }
    .db-footer-col--brand .db-footer-brand__logo img{
        height: 115px;
        width: auto;
        max-width: 280px;
    }
    @media (max-width: 575px) {
        .db-footer-col--brand .db-footer-brand__logo img{
            height: 52px;
        }
    }
    .db-footer-brand__tagline{
        margin: 0 0 24px;
        color: rgba(255,255,255,.72);
        font-size: 14px;
        line-height: 1.7;
        max-width: 360px;
    }

    /* ---------- Social row ---------- */
    .db-footer-social{
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .db-footer-social__btn{
        width: 38px;
        height: 38px;
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: rgba(255,255,255,.05);
        border: 1px solid rgba(255,255,255,.12);
        color: #fff !important;
        font-size: 14px !important;
        transition: all .3s ease;
        -webkit-text-fill-color: #fff !important;
        background-clip: padding-box !important;
    }
    .db-footer-social__btn:hover{
        background: linear-gradient(90deg, #B20D5D 0%, #4A0AB4 100%) !important;
        border-color: transparent;
        color: #fff !important;
        -webkit-text-fill-color: #fff !important;
        transform: translateY(-2px);
        box-shadow: 0 8px 20px -10px rgba(178,13,93,.55);
    }

    /* ---------- Quick Links ---------- */
    .db-footer-links{
        list-style: none;
        margin: 0;
        padding: 0;
        display: grid;
        gap: 12px;
    }
    .db-footer-links li{ margin: 0; }
    .db-footer-links li a{
        position: relative;
        display: inline-block;
        font-size: 14.5px;
        color: rgba(255,255,255,.78);
        line-height: 1.5;
        padding-left: 0;
        transition: color .25s ease, padding-left .25s ease;
    }
    .db-footer-links li a::before{
        content: "";
        position: absolute;
        left: 0; top: 50%;
        width: 0;
        height: 1px;
        background: #ffd29a;
        transform: translateY(-50%);
        transition: width .25s ease;
    }
    .db-footer-links li a:hover{
        color: #ffd29a;
        padding-left: 18px;
    }
    .db-footer-links li a:hover::before{ width: 12px; }

    /* ---------- Get in Touch (clean, no card) ---------- */
    .db-footer-contact{
        list-style: none;
        margin: 0;
        padding: 0;
        display: grid;
        gap: 18px;
    }
    .db-footer-contact__item{
        display: flex;
        align-items: flex-start;
        gap: 14px;
    }
    .db-footer-contact__icon{
        flex: 0 0 36px;
        width: 36px;
        height: 36px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: rgba(255,255,255,.05);
        border: 1px solid rgba(255,255,255,.12);
        color: #ffd29a;
        font-size: 14px;
        transition: all .3s ease;
    }
    .db-footer-contact__item:hover .db-footer-contact__icon{
        background: linear-gradient(135deg, #B20D5D 0%, #4A0AB4 100%);
        border-color: transparent;
        color: #fff;
        box-shadow: 0 8px 20px -10px rgba(178,13,93,.55);
    }
    .db-footer-contact__body{
        display: flex;
        flex-direction: column;
        gap: 2px;
        min-width: 0;
    }
    .db-footer-contact__label{
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: 1.4px;
        font-weight: 700;
        color: rgba(255,255,255,.55);
    }
    .db-footer-contact__value{
        font-size: 14.5px;
        line-height: 1.55;
        color: rgba(255,255,255,.9);
        font-weight: 500;
        word-break: break-word;
    }
    a.db-footer-contact__value{
        transition: color .25s ease;
    }
    a.db-footer-contact__value:hover{ color: #ffd29a; }

    /* ---------- BOTTOM : Copyright + Menu ---------- */
    .db-footer-bottom__inner{
        gap: 14px 28px;
        padding: 22px 0 !important;
        border-top: 1px solid rgba(255,255,255,.08) !important;
    }
    .db-footer-bottom__text{
        margin: 0;
        font-size: 13.5px;
        line-height: 1.6;
        color: rgba(255,255,255,.65);
    }
    .db-footer-bottom__brand{
        color: #ffd29a;
        font-weight: 700;
        letter-spacing: .3px;
        margin: 0 4px;
    }
    .db-footer-bottom__menu{ gap: 26px !important; }
    .db-footer-bottom__menu li{ position: relative; }
    .db-footer-bottom__menu li + li::before{
        content: "";
        position: absolute;
        left: -15px;
        top: 50%;
        width: 3px;
        height: 3px;
        border-radius: 50%;
        background: rgba(255,210,154,.5);
        transform: translateY(-50%);
    }
    .db-footer-bottom__menu li a{
        font-size: 13.5px;
        font-weight: 500;
        color: rgba(255,255,255,.78);
        transition: color .25s ease;
    }
    .db-footer-bottom__menu li a:hover{
        color: #ffd29a;
        background: none;
        -webkit-text-fill-color: #ffd29a;
    }

    /* ---------- Responsive ---------- */
    @media (max-width: 1199px){
        .db-footer-grid{ gap: 40px; }
    }
    @media (max-width: 991px){
        .db-footer-main{ padding: 56px 0 36px; }
        .db-footer-grid{
            grid-template-columns: 1fr;
            gap: 36px 30px;
        }
        .db-footer-brand__tagline{ max-width: 520px; }
    }
    @media (max-width: 767px){
        .db-footer-main{ padding: 48px 0 30px; }
    }

    /* ── Mobile footer overhaul (≤575px) ── */
    @media (max-width: 575px){
        .db-footer-main{ padding: 40px 0 24px; }

        /* Single-column grid with subtle dividers between columns */
        .db-footer-grid{
            grid-template-columns: 1fr;
            gap: 0;
        }
        .db-footer-col{
            padding: 28px 0;
            border-bottom: 1px solid rgba(255,255,255,.07);
        }
        .db-footer-col:last-child{ border-bottom: none; padding-bottom: 8px; }

        /* Brand column — centred */
        .db-footer-col--brand{
            text-align: center;
            padding-top: 0;
            padding-bottom: 28px;
        }
        .db-footer-col--brand .db-footer-brand__logo{
            justify-content: center;
            margin-bottom: 16px;
        }
        .db-footer-brand__tagline{
            margin: 0 auto 20px;
            text-align: center;
            font-size: 13.5px;
            line-height: 1.65;
        }

        /* Bigger, more tap-friendly social buttons */
        .db-footer-social{
            justify-content: center;
            gap: 12px;
        }
        .db-footer-social__btn{
            width: 44px;
            height: 44px;
            font-size: 16px !important;
        }

        /* Column titles — keep underline decoration, less margin */
        .db-footer-col__title{
            margin-bottom: 16px;
            font-size: 15px;
        }

        /* Quick links — 2-column grid so list isn't too tall */
        .db-footer-links{
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px 16px;
        }
        .db-footer-links li a{
            font-size: 14px;
        }

        /* Contact items — align icon + text cleanly */
        .db-footer-contact{ gap: 16px; }
        .db-footer-contact__item{ gap: 12px; align-items: flex-start; }
        .db-footer-contact__icon{
            flex: 0 0 34px;
            width: 34px;
            height: 34px;
            font-size: 13px;
        }
        .db-footer-contact__label{ font-size: 10px; letter-spacing: 1px; }
        .db-footer-contact__value{ font-size: 13.5px; }

        /* Bottom bar — stacked, centred */
        .db-footer-bottom__inner{
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            gap: 10px;
            padding: 18px 0 !important;
        }
        .db-footer-bottom__text{ font-size: 12.5px; }
        .db-footer-bottom__menu{
            justify-content: center;
            gap: 20px !important;
            flex-wrap: wrap;
        }
        .db-footer-bottom__menu li a{ font-size: 12.5px; }
        .db-footer-bottom__menu li + li::before{ left: -12px; }
    }
