    /* ═══ BRAND ORGANIZATION — organization.php ══════════════ */
    @keyframes rh-fadeUp {
        from {
            opacity: 0;
            transform: translateY(12px);
        }

        to {
            opacity: 1;
            transform: none;
        }
    }

    .b-page-head {
        background: #fff;
        border: 1.5px solid #E5E7EB;
        border-radius: 1.1rem;
        padding: 1rem 1.2rem;
        margin-bottom: 1.1rem;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        gap: .75rem;
        animation: rh-fadeUp .28s ease;
    }

    .b-page-head h1 {
        font-weight: 900;
        font-size: 1.1rem;
        color: #111827;
        margin: 0;
    }

    .b-page-head p {
        font-size: .81rem;
        color: #6B7280;
        margin: .18rem 0 0;
    }

    .btn-bh-outline {
        background: #fff;
        border: 1.5px solid #E5E7EB;
        color: #374151;
        border-radius: .55rem;
        padding: .4rem .9rem;
        font-size: .8rem;
        font-weight: 700;
        display: inline-flex;
        align-items: center;
        gap: .32rem;
        transition: all .15s;
        text-decoration: none;
    }

    .btn-bh-outline:hover {
        border-color: #F97316;
        color: #F97316;
    }

    /* Alert */
    .b-alert {
        border-radius: .75rem;
        padding: .65rem .95rem;
        font-size: .83rem;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: .5rem;
        margin-bottom: .9rem;
        animation: rh-fadeUp .22s ease;
    }

    .ba-success {
        background: #D1FAE5;
        border: 1.5px solid #6EE7B7;
        color: #065F46;
    }

    .ba-danger {
        background: #FEE2E2;
        border: 1.5px solid #FECACA;
        color: #991B1B;
    }

    .ba-warning {
        background: #FFFBEB;
        border: 1.5px solid #FDE68A;
        color: #92400E;
    }

    /* Layout */
    .b-org-layout {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    @media(max-width:900px) {
        .b-org-layout {
            grid-template-columns: 1fr;
        }
    }

    /* Cards */
    .b-card {
        background: #fff;
        border: 1.5px solid #E5E7EB;
        border-radius: 1.1rem;
        overflow: hidden;
        animation: rh-fadeUp .35s ease both;
    }

    .b-card-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: .85rem 1.15rem;
        border-bottom: 1.5px solid #F3F4F6;
    }

    .b-card-head h2 {
        font-weight: 800;
        font-size: .9rem;
        color: #111827;
        margin: 0;
        display: flex;
        align-items: center;
        gap: .4rem;
    }

    .b-card-body {
        padding: 1.2rem;
    }

    /* Form elements */
    .flabel {
        font-weight: 700;
        font-size: .76rem;
        text-transform: uppercase;
        letter-spacing: .5px;
        color: #6B7280;
        display: block;
        margin-bottom: .3rem;
    }

    .flabel .req {
        color: #F97316;
    }

    .flabel .hint {
        font-weight: 500;
        text-transform: none;
        letter-spacing: 0;
        color: #9CA3AF;
        margin-left: .3rem;
    }

    .finp {
        width: 100%;
        background: #F9FAFB;
        border: 1.5px solid #E5E7EB;
        border-radius: .6rem;
        padding: .52rem .82rem;
        font-size: .86rem;
        font-family: inherit;
        color: #111827;
        transition: border-color .16s, box-shadow .16s;
    }

    .finp:focus {
        outline: none;
        border-color: #F97316;
        box-shadow: 0 0 0 3px rgba(249, 115, 22, .1);
        background: #fff;
    }

    .finp::placeholder {
        color: #D1D5DB;
    }

    select.finp {
        cursor: pointer;
        appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right .75rem center;
    }

    .form-hint {
        font-size: .75rem;
        color: #9CA3AF;
        margin-top: .25rem;
    }

    /* Org meta display */
    .b-org-meta {
        background: #F9FAFB;
        border: 1.5px solid #E5E7EB;
        border-radius: .75rem;
        padding: .75rem 1rem;
        margin-top: .8rem;
        display: flex;
        flex-wrap: wrap;
        gap: .6rem;
    }

    .b-org-meta-item {
        display: flex;
        flex-direction: column;
        min-width: 80px;
    }

    .b-org-meta-item .mlbl {
        font-size: .67rem;
        font-weight: 800;
        color: #9CA3AF;
        text-transform: uppercase;
        letter-spacing: .5px;
    }

    .b-org-meta-item .mval {
        font-size: .85rem;
        font-weight: 700;
        color: #111827;
        margin-top: .12rem;
    }

    .b-org-meta-item .mval.accent {
        color: #F97316;
    }

    /* Divider */
    .f-divider {
        height: 1px;
        background: #F3F4F6;
        margin: 1.1rem -1.2rem;
    }

    /* Section label */
    .f-section {
        font-size: .7rem;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: .9px;
        color: #9CA3AF;
        margin-bottom: .7rem;
        display: flex;
        align-items: center;
        gap: .4rem;
    }

    /* Buttons */
    .btn-primary-sm {
        background: #F97316;
        color: #fff;
        border: none;
        border-radius: .55rem;
        padding: .45rem 1rem;
        font-size: .82rem;
        font-weight: 700;
        display: inline-flex;
        align-items: center;
        gap: .32rem;
        transition: all .15s;
        cursor: pointer;
        font-family: inherit;
    }

    .btn-primary-sm:hover {
        background: #EA580C;
        transform: translateY(-1px);
    }

    .btn-primary-sm:disabled {
        background: #D1D5DB;
        cursor: not-allowed;
        transform: none;
        color: #6B7280;
    }

    .btn-outline-sm {
        background: #fff;
        border: 1.5px solid #E5E7EB;
        color: #374151;
        border-radius: .55rem;
        padding: .42rem .9rem;
        font-size: .82rem;
        font-weight: 700;
        display: inline-flex;
        align-items: center;
        gap: .32rem;
        transition: all .15s;
        cursor: pointer;
        font-family: inherit;
    }

    .btn-outline-sm:hover {
        border-color: #F97316;
        color: #F97316;
    }

    .btn-outline-sm:disabled {
        opacity: .5;
        cursor: not-allowed;
    }

    /* Reload button */
    .btn-reload {
        background: none;
        border: none;
        color: #9CA3AF;
        font-size: .85rem;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: .3rem;
        transition: color .15s;
        padding: .2rem .4rem;
        border-radius: .4rem;
    }

    .btn-reload:hover {
        color: #F97316;
        background: #FFF7ED;
    }

    /* Org list item */
    .b-org-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .b-org-item {
        display: flex;
        align-items: center;
        gap: .7rem;
        padding: .65rem .9rem;
        border: 1.5px solid #E5E7EB;
        border-radius: .7rem;
        margin-bottom: .5rem;
        cursor: pointer;
        transition: all .16s;
        background: #fff;
    }

    .b-org-item:last-child {
        margin-bottom: 0;
    }

    .b-org-item:hover,
    .b-org-item.selected {
        border-color: #F97316;
        background: #FFF7ED;
    }

    .b-org-item.selected {
        border-color: #F97316;
    }

    .b-org-avatar {
        width: 36px;
        height: 36px;
        border-radius: .65rem;
        background: #F97316;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 800;
        font-size: .75rem;
        flex-shrink: 0;
    }

    .b-org-info {
        flex: 1;
        min-width: 0;
    }

    .b-org-name {
        font-weight: 700;
        font-size: .88rem;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .b-org-sub {
        font-size: .73rem;
        color: #6B7280;
        margin-top: .1rem;
    }

    .b-org-role {
        font-size: .68rem;
        font-weight: 800;
        padding: .12rem .5rem;
        border-radius: 99px;
        background: #FFF7ED;
        color: #C2410C;
        flex-shrink: 0;
    }

    /* Empty org state */
    .b-org-empty {
        text-align: center;
        padding: 1.5rem;
        color: #9CA3AF;
        font-size: .84rem;
        border: 1.5px dashed #E5E7EB;
        border-radius: .75rem;
    }

    .b-org-empty .emo {
        font-size: 2rem;
        margin-bottom: .5rem;
    }

    /* Toast */
    #b-toast-wrap {
        position: fixed;
        bottom: 1.2rem;
        left: 50%;
        transform: translateX(-50%);
        z-index: 9999;
        display: flex;
        flex-direction: column;
        gap: .35rem;
        align-items: center;
        pointer-events: none;
    }

    .b-toast {
        background: #1F2937;
        color: #F9FAFB;
        border-radius: 50px;
        padding: .52rem 1.1rem;
        font-size: .8rem;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: .45rem;
        box-shadow: 0 8px 28px rgba(0, 0, 0, .18);
        animation: rh-fadeUp .22s ease;
        pointer-events: all;
    }

    .bt-s {
        background: #065F46;
    }

    .bt-e {
        background: #991B1B;
    }

    .bt-w {
        background: #92400E;
    }
